代码搜索:Create

找到约 10,000 项符合「Create」的源代码

代码结果 10,000
www.eeworm.com/read/410290/11294216

~pas iocppool.~pas

{* Synapse IOCPPool implementation. The TTCPDaemon class works like a web-server using a pool of TWorkerThreads waiting for an IOCP handle. It reads a .config file to configurate the class.
www.eeworm.com/read/410290/11294240

pas iocppool.pas

{* Synapse IOCPPool implementation. The TTCPDaemon class works like a web-server using a pool of TWorkerThreads waiting for an IOCP handle. It reads a .config file to configurate the class.
www.eeworm.com/read/264925/11294575

pas secomm.pas

unit SeComm; interface uses SysUtils, Classes,Windows,Messages; const COMMESSAGE=WM_USER+1; type TStopBits = (ONESTOPBIT,TWOSTOPBITS,ONE5STOPBITS); TParity = (EVENPARITY,NOPARITY
www.eeworm.com/read/134079/11298613

m mapping.m

function A = mapping(n) % To create a Morton Scan order matrix if n == 2 A = [1 2; 3 4]; else B = mapping(n/2); A = [B B+(n/2)^2; B+(n/2)^2*2 B+(n/2)^2*3]; end
www.eeworm.com/read/264808/11300158

pas usrengn.pas

unit UsrEngn; interface uses Windows, Classes, SysUtils, StrUtils, Forms, ObjBase, ObjNpc, Envir ,Grobal2,SDK; type TUserEngine = class m_LoadPlaySection :TRTLCriticalSection;
www.eeworm.com/read/264808/11300691

~pas usrengn.~pas

unit UsrEngn; interface uses Windows, Classes, SysUtils, StrUtils, Forms, ObjBase, ObjNpc, Envir ,Grobal2,SDK; type TUserEngine = class m_LoadPlaySection :TRTLCriticalSection;
www.eeworm.com/read/264485/11311646

txt sql.txt

if exists(select name from sysdatabases where name = '学生管理') drop database 学生管理 go create database 学生管理 go use 学生管理 go if exists(select name from sysobjects where name = '学生基本信息'and type
www.eeworm.com/read/264467/11313169

pas syntaxhi.pas

Unit SyntaxHi; Interface {$I XQ_FLAG.INC} Uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, xqlex, xqyacc, StdCtrls, Inifiles, ComCtrls, Buttons, RichEdit, xq
www.eeworm.com/read/264467/11313324

pas qexpryacc.pas

// Template for ExprParser {**********************************************} { Expression Parser } { Copyright (C) 2002 by Alfonso Moreno } {***************
www.eeworm.com/read/264445/11314847

sql schema_mysql_innodb.sql

CREATE TABLE tasks ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, parent INT UNSIGNED NOT NULL, name VARCHAR(255) NOT NULL, text TEXT, created TIMESTAMP NOT NULL, edited TIMESTAM