代码搜索:instance
找到约 10,000 项符合「instance」的源代码
代码结果 10,000
www.eeworm.com/read/242704/4546176
java blockmanager.java
package net.sourceforge.gjtapi.util;
/**
* This is a queue that accepts objects and processes these objects.
* A user will create and instance of the EventHandler and pass it into this event coll
www.eeworm.com/read/238231/4616992
stx debugger.stx
BoaDebugger - Boa Constructor IDE interactive Zope Debugging
Description
This Zope Instance is necessary to interact with the Boa Constructor
IDE to allow you to use this IDE to
www.eeworm.com/read/222917/4815521
readme
Test scripts assumes:
- PostgreSQL server is installed locally
- there is a PostgreSQL account for the users running the test scripts
- there is database named "test"
For instance, if your login
www.eeworm.com/read/222239/4821598
out ncelab.out
Elaborating the design hierarchy:
Caching library 'worklib' ....... Done
Building instance overlay tables:
$readmemh("../src/oc8051_test.vec", buff);
|
www.eeworm.com/read/218654/4855768
java datacache.java
package DataCenterPackage;
import java.util.Properties;
public class DataCache
{
private Properties _cache;
private static DataCache _INSTANCE;
private DataCache()
{
www.eeworm.com/read/206619/5006513
cs propertytypehash.cs
using System;
using System.Collections;
namespace SharpReportCore{
public class PropertyTypeHash{
static PropertyTypeHash instance = new PropertyTypeHash();
static public PropertyTypeHas
www.eeworm.com/read/194563/5127505
tex dataviewrenderer.tex
\section{\class{wxDataViewRenderer}}\label{wxdataviewrenderer}
This class is used by \helpref{wxDataViewCtrl}{wxdataviewctrl} to
render the individual cells. One instance of a renderer class is
own
www.eeworm.com/read/191729/5163229
java elvis.java
// Singleton with final field - page 10
public class Elvis {
public static final Elvis INSTANCE = new Elvis();
private Elvis() {
// ...
}
// ... // Remainder omitted
www.eeworm.com/read/191729/5163231
java elvis.java
// Singleton with static factory
public class Elvis {
private static final Elvis INSTANCE = new Elvis();
private Elvis() {
// ...
}
public static Elvis getInstance()
www.eeworm.com/read/191729/5163298
java elvis.java
// Singleton with final field - page 10
public class Elvis {
public static final Elvis INSTANCE = new Elvis();
private Elvis() {
// ...
}
// ... // Remainder omitted