代码搜索:instance
找到约 10,000 项符合「instance」的源代码
代码结果 10,000
www.eeworm.com/read/352063/10584382
h singleton.h
#ifndef _SINGLETON_H_
#define _SINGLETON_H_
#include
using namespace std;
class Singleton
{
public:
static Singleton* Instance();
protected:
Singleton();
private:
st
www.eeworm.com/read/351822/10606309
java singlespooler.java
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 1 instance
public Spool
www.eeworm.com/read/351822/10606313
java singleprinter.java
class Printer
{
//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
public Print
www.eeworm.com/read/277459/10635031
cs spooler.cs
using System;
namespace singleSpooler
{
///
/// Prototype of Spooler Singleton
/// such that only one instane can ever exist.
///
public class Spooler {
static b
www.eeworm.com/read/349343/10834414
h singleton.h
//Singleton.h
#ifndef _SINGLETON_H_
#define _SINGLETON_H_
#include
using namespace std;
class Singleton
{
public:
static Singleton* Instance();
protected:
Singleton();
www.eeworm.com/read/274579/10863356
patch sles9-sp2.patch
diff -uprN base/megaraid_sas.c sles9-sp2/megaraid_sas.c
--- base/megaraid_sas.c 2007-10-13 20:49:29.000000000 -0700
+++ sles9-sp2/megaraid_sas.c 2007-10-13 20:46:04.000000000 -0700
@@ -28,6 +28,7 @@
www.eeworm.com/read/274579/10863366
patch sles9-sp1.patch
diff -uprN base/megaraid_sas.c sles9-sp1/megaraid_sas.c
--- base/megaraid_sas.c 2007-10-13 20:49:29.000000000 -0700
+++ sles9-sp1/megaraid_sas.c 2007-10-13 20:45:56.000000000 -0700
@@ -28,6 +28,7 @@
www.eeworm.com/read/274579/10863369
patch sles9-sp3.patch
diff -uprN base/megaraid_sas.c sles9-sp3/megaraid_sas.c
--- base/megaraid_sas.c 2007-10-13 20:49:29.000000000 -0700
+++ sles9-sp3/megaraid_sas.c 2007-10-13 20:46:11.000000000 -0700
@@ -28,6 +28,7 @@
www.eeworm.com/read/416012/11044343
java messageclassifier.java
/**
* Java program for classifying text messages into two classes.
* DMman整理http://blogger.org.cn/blog/blog.asp?name=DMman
*/
import weka.core.Attribute;
import weka.core.Instance;
import weka.c
www.eeworm.com/read/240145/7086824
c metadatamanagerinit.c
/*++
Copyright (c) 1999 - 2003 Microsoft Corporation
Module Name:
MetadataManagerInit.c
Abstract:
This is the main module of the kernel mode filter driver implementing
fil