代码搜索:illustrates

找到约 2,346 项符合「illustrates」的源代码

代码结果 2,346
www.eeworm.com/read/183260/9173731

sql utl_tcp.sql

REM UTL_TCP.sql REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman REM This block illustrates how to use the UTL_TCP package. set echo on set serveroutput on size 200000 DECLARE v
www.eeworm.com/read/183260/9173946

sql badfetch.sql

REM BadFetch.sql REM Chapter 6, Oracle9i PL/SQL Programming by Scott Urman REM This block illustrates legal and illegal FETCH statements. DECLARE v_Department classes.department%TYPE; v_Co
www.eeworm.com/read/160935/10469038

imo certainty factors example.imo

win(header(pc,furule_model_factory,'Certainty factors example',nil),7,25,609,556,conts(`~M~J/* This light-hearted Easy-f model illustrates the use of certainty factors (CFs). ~M~JAs explained in the U
www.eeworm.com/read/296805/8076556

htm strings.htm

/* strings.c: Illustrates C strings */ #include <stdio.h> #include <string.h> int main() { char last[] = {'f','r','o','s','t','\0'}; char first[
www.eeworm.com/read/136989/5827086

cpp ssl-server-poll.cpp

// SSL-server-poll.cpp,v 1.3 2003/12/10 13:16:55 jwillemsen Exp // IPC_SAP/poll server, which illustrates how to integrate the ACE // SSL socket wrappers with the SVR4 system call to create
www.eeworm.com/read/136989/5831087

readme

//README,v 1.1 2003/07/16 04:23:44 yamuna Exp Case ---- This test illustrates the DT cancel mechanism when the DT's are local (ie. DT's do not span multiple nodes). Four DT's are created. Each
www.eeworm.com/read/100926/6263220

cpp ssl-server-poll.cpp

// SSL-server-poll.cpp,v 1.2 2000/06/16 23:27:19 othman Exp // IPC_SAP/poll server, which illustrates how to integrate the ACE // SSL socket wrappers with the SVR4 system call to create a
www.eeworm.com/read/405333/11465178

cpp wordlist2.cpp

//: C07:WordList2.cpp // From "Thinking in C++, 2nd Edition, Volume 2" // by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc. // Available at www.BruceEckel.com. // Illustrates istreambuf_iter
www.eeworm.com/read/475965/1374129

c flags.c

/* flags.c -- illustrates some formatting flags */ #include int main(void) { printf("%x %X %#x\n", 31, 31, 31); printf("**%d**% d**% d**\n", 42, 42, -42); printf("**%5d**%5
www.eeworm.com/read/251522/4418844

m naive_bayes1.m

% This example illustrates how we can build a naive Bayes classifier % with different kinds of observed leaves. N = 3; dag = zeros(N,N); dag(1,2:N)=1; dnodes = [1 2]; nclasses = 2; ns = [nclasses 2 3