代码搜索:instance

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

代码结果 10,000
www.eeworm.com/read/140704/5783539

cc dec_prune_1.cc

// file: dec_prune_1.cc // // isip include files // #include "decoder.h" #include "decoder_constants.h" // method: beam_prune_cc // // arguments: none // // return: a logical_1 to indicate status //
www.eeworm.com/read/139298/5803175

java knearestneighbor.java

package fasbir.classifiers; import java.io.Serializable; import java.util.Arrays; import java.util.Comparator; import java.util.Enumeration; import weka.classifiers.Classifier; import weka.c
www.eeworm.com/read/273303/6281664

c pfat.c

/* * Pseudo-fat filesystem. * Copyright (c) 2003, Jeffrey K. Hollingsworth * Copyright (c) 2003,2004 David H. Hovemeyer * $Revision: 1.54 $ * * This is
www.eeworm.com/read/478256/6713756

h hub.h

#ifndef _HUB_H #define _HUB_H /****************************************************************************/ /* includes */ /******************************************************
www.eeworm.com/read/265341/11267593

cpp split.cpp

#include "head.h" #include using namespace std; void split( deque::iterator begin, deque::iterator end, vector< vector > &class_ve
www.eeworm.com/read/156494/11797873

sql demo02.sql

select c.value || '/' || d.instance_name || '_ora_' || a.spid || '.trc' trace from v$process a, v$session b, v$parameter c, v$instance d where a.addr = b.paddr and b.auds
www.eeworm.com/read/234849/14095444

java lazysingleton.java

public class LazySingleton { private static LazySingleton m_instance=null; private LazySingleton() { } synchronized public static LazySingleton getInstance() { if(m_instance==null)
www.eeworm.com/read/127651/14344638

java spooler.java

public class Spooler { //this is a prototype for a printer-spooler class //such that only one instance can ever exist static boolean instance_flag = false; //true if one instance
www.eeworm.com/read/124167/14591898

java ispooler.java

class iSpooler { //this is a prototype for a printer-spooler class //such that only one instance can ever exist static boolean instance_flag = false; //true if 1 instance private i
www.eeworm.com/read/120274/14808106

h singleton.h

/* -*- C++ -*- */ #ifndef _XP_SINGLETON_H #define _XP_SINGLETON_H /** * @class Singleton * * If you want to make sure that only the singleton instance of * is created, and that us