代码搜索:Local
找到约 10,000 项符合「Local」的源代码
代码结果 10,000
www.eeworm.com/read/168128/9936955
frm registry editor.frm
VERSION 4.00
Begin VB.Form Registry
BorderStyle = 1 'Fixed Single
Caption = "Registry Editor"
ClientHeight = 3255
ClientLeft = 2130
ClientTop =
www.eeworm.com/read/167822/9951454
conf server.conf
/usr/local/share/airtraffic/types
/usr/share/airtraffic/types
../planetypes
www.eeworm.com/read/167540/9964047
c- c-localv.c-
/*
* test file localv.c-
* test local variables
*
*/
int main()
{
int i = 8;
char t = 'K';
t=t+i;
println(t);
return 0;
}
www.eeworm.com/read/167540/9964274
c- c-mixv.c-
/*
* test file mixv.c-
* mix global and local variables
*
*/
int a=45;
char b='M';
int main()
{
float c=3.141593;
int d = 10;
println("a="~a~"\nb="~b~"\nc="~c~"\nd="~d);
return 0;
www.eeworm.com/read/362769/9981324
plg classicatldicesvr.plg
Build Log
--------------------Configuration: ClassicATLdiceSvr - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\User
www.eeworm.com/read/362517/9994747
txt java在linux下的web应用(二.txt
作者:blackwhites
日期:2000-10-25 18:03:37
gnujsp1.0.0在RedHat下基于apache&nbsnbsp;jserv的安装&nbsnbsp;
首先确认你已经安装了apache&nbsnbsp;jserv,如果你还没有安装apache&nbsnbsp;jserv,请参考在《RedHat下&nbsnbsp;
安装apache&nbsnbsp;j
www.eeworm.com/read/362517/9994800
txt java在linux下的web应用(三).txt
作者:blackwhites
日期:2000-10-25 18:04:29
cocoon 1.7.4在RedHat下基于apache jserv的安装
cocoon是xml在apache上的实现,作为一种web发布系统。本文介绍cocoon在RedHat下的安装。
首先确认你已经安装了apache jserv,如果你还没有安装apache jserv,请参考本站
《RedHat下安
www.eeworm.com/read/362517/9994857
txt java在linux下的web应用(一).txt
作者:blackwhites
日期:2000-10-25 18:00:05
RedHat下安装apache jserv 1.1.2
虽然apache jserv的开发小组现在都从事tomcat的开发,而且apache jserv只支持servlet 2.0
的标准,并且要加其他的软件(gnujsp)才能支持jsp;但是apache jserv在现阶段比tomcat稳定,
www.eeworm.com/read/362473/9997620
makefile
#!/bin/sh
default:
g++ -D__LINUX__ -c -I ../include *.cpp
g++ -o test UDPClient.o UDPServer.o -L /usr/local/lib -lTask -lpthread -ludp -lLogger
clean:
rm -fr *.o test
www.eeworm.com/read/362473/9997645
makefile
#!/bin/sh
SRC= Task.cpp TaskQueue.cpp WorkThread.cpp WorkThreadPool.cpp ThreadMain.cpp
default:
g++ -I ../include -D__LINUX__ -shared -fPIC $(SRC) -o /usr/local/lib/libTask.so
g++ -I ../inclu