代码搜索:finalize

找到约 714 项符合「finalize」的源代码

代码结果 714
www.eeworm.com/read/341021/3258688

sm makefile.sm

INCLUDES = -I../../../../../include -I${master_top_srcdir}/src/include ssmsources = \ ch3_finalize.c \ ch3_init.c \ ch3_istartmsg.c \ ch3_istartmsgv.c
www.eeworm.com/read/341021/3259106

state-cache .state-cache

www.eeworm.com/read/285437/4049944

bat startclient.bat

@echo off echo Starting QueWeb client... start %WINDIR%\System32\rundll32 url.dll,FileProtocolHandler http://localhost:8080 echo Started. Please press Next to create shortcuts and finalize installa
www.eeworm.com/read/396039/2425135

w log_mpio.w

/* This file should be INCLUDED into log_wrap.c when adding the IO routines to the profiling list Also set MPE_MAX_STATES to 180 */ {{forallfn fn_name MPI_Init MPI_Finalize}}#define {{f
www.eeworm.com/read/179906/5300904

java terminationcondition.java

//: c04:TerminationCondition.java // Using finalize() to detect an object that // hasn't been properly cleaned up. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. S
www.eeworm.com/read/252364/4409033

java terminationcondition.java

//: c04:TerminationCondition.java // Using finalize() to detect an object that // hasn't been properly cleaned up. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. S
www.eeworm.com/read/341021/3258766

state-cache .state-cache

www.eeworm.com/read/403922/11499419

html function.hash-final.html

Finalize an incremental hash and return resulting digest
www.eeworm.com/read/233040/14171569

h xo-paint.h

void set_cursor_busy(gboolean busy); void update_cursor(void); void create_new_stroke(GdkEvent *event); void continue_stroke(GdkEvent *event); void finalize_stroke(void); void do_eraser(GdkEvent *ev
www.eeworm.com/read/411577/2185941

c embed.c

#include int main() { Py_Initialize(); /* Python解释器初始化 */ PyRun_SimpleString("print 'hi,python!'"); /* 运行字符串 */ Py_Finalize(); /* 结束Python解释器,释放资源 */ return 0; }