代码搜索:Instance
找到约 10,000 项符合「Instance」的源代码
代码结果 10,000
www.eeworm.com/read/223082/14660354
java instancehashtable.java
package shared;
import java.lang.*;
import java.util.*;
/*****************************************************************************
InstanceHashTable is a clean interface to the user of has
www.eeworm.com/read/165570/5481146
java enclosing.java
/** The enclosing class. */
public class Enclosing
{
/** Instance variable known to Enclosing and Inner. */
private int a;
/** A reference to an instance of Inner. */
private Inner anInner
www.eeworm.com/read/173128/9673005
java instancehashtable.java
package shared;
import java.lang.*;
import java.util.*;
/*****************************************************************************
InstanceHashTable is a clean interface to the user of has
www.eeworm.com/read/300368/13917705
java distributionclassifier.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/126074/6018650
exp inserr.exp
TRUE
CLIPS> (batch "inserr.bat")
TRUE
CLIPS> (send)
[ARGACCES4] Function send expected at least 2 argument(s)
CLIPS> (send object)
[ARGACCES4] Function send expected at least 2 argument(s)
CLIPS> (sen
www.eeworm.com/read/124399/6049901
exp inserr.exp
TRUE
CLIPS> (batch "inserr.bat")
TRUE
CLIPS> (send)
[ARGACCES4] Function send expected at least 2 argument(s)
CLIPS> (send object)
[ARGACCES4] Function send expected at least 2 argument(s)
CLIPS> (sen
www.eeworm.com/read/167515/9966854
c singleton.c
/*
*/
#ifdef Implementation1
/*
*/
class Singleton {
public:
static Singleton* Instance();
protected:
Singleton();
private:
static Singleton* _instance;
};
/*
*/
Singleton* Singleton::_ins
www.eeworm.com/read/357125/10215863
java binaryrelevanceclassifier.java
package mulan.classifier;
import weka.classifiers.Classifier;
import weka.core.Attribute;
import weka.core.Instance;
import weka.core.Instances;
import weka.filters.Filter;
import weka.filters
www.eeworm.com/read/357125/10215875
java multilabelclassifier.java
package mulan.classifier;
import weka.classifiers.Classifier;
import weka.core.Instance;
import weka.core.Instances;
public interface MultiLabelClassifier
{
public int getNumLabels();
www.eeworm.com/read/162314/10315339
cpp singleton.cpp
//Singleton.cpp
#include "Singleton.h"
#include
using namespace std;
Singleton* Singleton::_instance = 0;
Singleton::Singleton()
{
cout