代码搜索:Local
找到约 10,000 项符合「Local」的源代码
代码结果 10,000
www.eeworm.com/read/398989/7904206
plg cpp1.plg
Build Log
--------------------Configuration: Cpp1 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Users\Sunny\AppDa
www.eeworm.com/read/433697/7913323
c csend.c
/* csEnd.c - Crystal Semiconductor CS8900 network interface driver */
/* */
/* Copyright 2000 Crystal Semiconductor
www.eeworm.com/read/398826/7917284
makefile
#for solaris
ARCH = solaris
SHELL = /bin/csh
PURELINKEROPT=-collector=g++
CFLAGS= -DSOLARIS -fexternal-templates -Wall -Wno-unused -O -gstab -DLOGGING \
-DUNIX -DGRAPHICS -DATTRPRO
www.eeworm.com/read/398765/7923953
plg 词法分析.plg
Build Log
--------------------Configuration: 词法分析 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Users\xueni\AppDa
www.eeworm.com/read/398759/7924244
plg lr1.plg
Build Log
--------------------Configuration: LR1 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Users\xueni\AppDat
www.eeworm.com/read/398754/7925757
lua readonly.lua
-- make global variables readonly
local f=function (t,i) error("cannot redefine global variable `"..i.."'",2) end
local g={}
local G=getfenv()
setmetatable(g,{__index=G,__newindex=f})
setfenv(1,g)
-
www.eeworm.com/read/398754/7925762
lua bisect.lua
-- bisection method for solving non-linear equations
delta=1e-6 -- tolerance
function bisect(f,a,b,fa,fb)
local c=(a+b)/2
io.write(n," c=",c," a=",a," b=",b,"\n")
if c==a or c==b or math.abs(a-b)
www.eeworm.com/read/398754/7925775
lua fib.lua
-- fibonacci function with cache
-- very inefficient fibonacci function
function fib(n)
N=N+1
if n
www.eeworm.com/read/398754/7925785
lua trace-globals.lua
-- trace assigments to global variables
do
-- a tostring that quotes strings. note the use of the original tostring.
local _tostring=tostring
local tostring=function(a)
if type(a)=="string" then
www.eeworm.com/read/398754/7925802
lua env.lua
-- read environment variables as if they were global variables
local f=function (t,i) return os.getenv(i) end
setmetatable(getfenv(),{__index=f})
-- an example
print(a,USER,PATH)