代码搜索:Create

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

代码结果 10,000
www.eeworm.com/read/133667/14030621

tk puzzle.tk

#!/usr/bin/wish -f # First we create the image. Then we configure the frame which will hold the pieces of # the image that will form the puzzle. This we pack with a little padding. set image [image
www.eeworm.com/read/133667/14030685

tk canvas.tk

#!/usr/bin/wish -f # First we create the canvas and then some objects to display on it. set c [canvas .c -width 400 -height 300 -relief sunken -bd 2] set image [image create photo -file caption.gif
www.eeworm.com/read/133391/14045969

sql createdb.sql

create database siloDataBase on primary (name=silo, -- filename='E:\work\毕业设计\database\databasefiles\silo_date.mdf', filename='C:\Tomcat 5.0\mywork\bish\database\databasefiles\silo_d
www.eeworm.com/read/235612/14060163

m contents.m

% CREWES synthetic seismogram toolbox % This contains tools to create convolutional synthetic seismograms % %Wavelets % EINAR ... Creates a constant Q impulse response wavelet according to Kjarta
www.eeworm.com/read/235282/14077221

sql family.sql

USE HR GO CREATE TABLE Family (Id tinyint PRIMARY KEY IDENTITY, Emp_Id int NOT NULL, Name varchar(50) NOT NULL, Sex char(2), Age tinyint, Relationship varchar(20), Wo
www.eeworm.com/read/205013/15329934

test autovacuum_ioerr2.test

# 2001 October 12 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for your
www.eeworm.com/read/205013/15329961

test trigger2.test

# The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive oth
www.eeworm.com/read/205013/15329962

test pager3.test

# 2001 September 15 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yo
www.eeworm.com/read/205013/15330070

test tkt2192.test

# 2007 January 26 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for your
www.eeworm.com/read/204888/15331936

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