|
| |
| | Instance |
 | | Constructor of an instance that sets weight to one, all values to be missing, and the reference to the dataset to null. |  | | Reference to the dataset is set to null. |
|
http://www.lsi.upc.es/~bejar/apren/docum/doc/weka/core/Instance.html
(1913 words)
|
|
| |
| | The Essence of OOP using Java, Instance Initializers |
 | | The code in an instance initializer block is executed after the constructor for the superclass is executed, and before the constructor for the class to which the initializer belongs is executed. |  | | Instance initializers and variable initializers, along with constructors, are executed each time a new object of the class is instantiated. |  | | Each time an object of the class named B is instantiated, an instance method of the class is invoked to display the values of the instance variables initialized during the process of instantiating the object. |
|
http://www.developer.com/java/other/article.php/3065621
(5029 words)
|
|
| |
| | Bug ID: 4926251 instance variable initializers in named classes can throw checked exceptions |
 | | Instance variable initializers in named classes cannot throw checked exceptions, but that is not how the language actually works. |  | | an instance variable of a named class (or of an interface) can complete abruptly with a checked exception.� �11.2, "Compile-Time Checking of Exceptions" and http://java.sun.com/docs/books/jls/clarifications-2-2nd-ed.html: �...instance variable initializers within named classes and interfaces, must not result in a checked exception; if one does, a compile-time error occurs.� These specification could not be any clearer. |  | | No such restriction applies to instance initializers or instance variable initializers within anonymous classes.� This paragraph from �11.2, "Compile-Time Checking of Exceptions" involves an unrelated error that has been corrected at http://java.sun.com/docs/books/jls/clarifications-2-2nd-ed.html as follows. |
|
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4926251
(1219 words)
|
|
| |
| | Single-instance applications |
 | | In order to pass data from the second instance of the application to the first instance, you must implement some type of shared memory scheme. |  | | In that case you would want to prevent a second instance from starting, but yet load the file the user double-clicked in the original instance of the application. |  | | You might even be tempted to write a file to disk that the initial instance can read (although I would consider that approach a hack). |
|
http://bcbjournal.org/articles/vol3/9911/Single-instance_applications.htm
(1512 words)
|
|
| |
| | Instance Variables |
 | | Each instance-variable-clause declares a number of instance variables for instances of the class, or expressions to be evaluated when an instance of the class is created. |  | | The process for evaluating initial value expressions is decribed in section 6.3.3 and section 6.4. |  | | instance variables, the instance-var-initial-value-expr expression provides a value for the variable in an object; when an initial value expression is not given, |
|
http://www.cs.rice.edu/CS/PLT/packages/53/doc/mzscheme/node48.htm
(468 words)
|
|
| |
| | Adding a second Postfix instance Advosys Consulting |
 | | Each instance has it's own main.cf and other files, so you are free to customize one instance without affecting the other. |  | | Both instances share the same Postfix binaries so upgrading one instance also upgrades the others. |  | | For mail originating from the mail server itself, you might want to create a small shell script wrapper for "sendmail" so mail originating on the server itself uses the outbound instance. |
|
http://advosys.ca/papers/postfix-instance.html
(1243 words)
|
|
| |
| | Copying an Instance |
 | | For example if instance A refers to instance B then a copy of A will refer to a copy of B. Thus a single instance copy operation may cause the system to generate many new instances because all referenced instances must be copied. |  | | For example if an instance has a browser-key value of "Foo" and you copy the instance the system changes the browser key value to "copy of Foo". |  | | The example below shows the result of copying the article "Mir Doomed By Collision" from the articles list in the Library form and pasting the copy into the same list. |
|
http://smi-web.stanford.edu/projects/prot-nt/documentation/LayoutInterpreter/copying_an_instance.html
(341 words)
|
|
| |
| | Annoyances.org - re: XP calculator multiple instance annoying (Windows XP Discussion Forum) |
 | | Why would someone need multiple instance of a calculator running, for me it makes more sense that there should at least be an easy way to control whether a program is single instance or multi-instance. |  | | But now that Windows XP make it multi-instance, everytime I hit the hot key, it will bring up a new program, which is annoying to me and it is also a waste of time. |  | | This has become a habit for me and it works pretty well because windows 2000 only allows once instance, meanning there will only be one program running. |
|
http://www.annoyances.org/exec/forum/winxp/1110437564
(241 words)
|
|
| |
| | survivor: instance.cf |
 | | However, the web interface will determine which instances are available and allow the user to select among them. |  | | In this example, files are written to a separate mount point, and the root user is permitted to use the command line interface: |  | | In general, if there is only one instance defined in |
|
http://www.columbia.edu/acis/dev/projects/survivor/doc/cf-instance.html
(467 words)
|
|
| |
| | Instance-Based Learning: A Java Implementation |
 | | Each time a new query instance is encountered, its relationship to the previously stored examples is examined to assign a target function value for the new instance. |  | | When a new instance is encountered, a set of similar, related instances is retrieved from memory and used to classify the query instance (target function). |  | | IBL approaches can construct a different approximation of the target function for each distinct query instance that is to be classified. |
|
http://www.developer.com/java/other/article.php/1491651
(810 words)
|
|
| |
| | Class vs. Instance |
 | | As you see, you refer to an object's instance methods and variables similar to the way you refer class methods and variables. |  | | variable is a class variable, it refers to an instance of the PrintStream class (a member of the java.io package that implements the The Standard Output Stream |  | | Sum it Up Class variables and class methods are associated with a class and occur once per class. |
|
http://scv.bu.edu/Doc/Java/tutorial/java/anatomy/static.html
(338 words)
|
|
| |
| | Understanding Instance and Class Members |
 | | All instances of that class share the same copy of the class’s class variables. |  | | The runtime system allocates a class variable once per class, regardless of the number of instances created of that class. |  | | Similarly, class methods can be invoked on the class or through an instance reference. |
|
http://java.sun.com/books/Series/Tutorial/java/javaOO/classvars.html
(370 words)
|
|
| |
| | Understanding Instance Mapping |
 | | The SNMP queries done by the instance mapping algorithm are implemented semi-independently from the rest of Cricket's datasource management code. |  | | If the key no longer matches, then the cache is invalidated, a table-scan is done to map the instance number, and the data is re-fetched using the new instance number. |  | | It is accurate because every time Cricket fetches data using a cached instance number, it also fetches the key in the same packet. |
|
http://cricket.sourceforge.net/support/doc/inst-mapping.html
(952 words)
|
|
| |
| | AskTom "Difference between DB_NAME and Instance_..." |
 | | If your answer to the question is that the DBCA always creates a new instance then I would ask "Is there any way that I can create a database without an instance using DBCA". |  | | On windows do we have an option(using DBCA) to create only the database and not a new instance so that I could use the existing instance to mount either of the databases. |  | | An instance is a collection of processes and memory. |
|
http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:533422350794
(5210 words)
|
|
| |
| | Instance-specific options |
 | | So the first instance of the program is used to open the first file you wish to edit. |  | | You can open more files in more instances of TreePad if memory and system resources permit. |  | | You can open the next instance of the program in several ways as detailed in |
|
http://www.treepad.com/docs/manual/documents/5A6012A6DC2DA3765C6A57625BBD287ED03CDE12.html
(566 words)
|
|
| |
| | Pedro Silva's Blog : Single Instance App on Whidbey |
 | | Many times new instance launching happens from the Windows Explorer when the user opens a file with an extension that is registered for your app. |  | | This new class (WindowsFormsApplicationBase) really helps abstract away a lot of code that needed to be written in previous versions that dealt with named pipes between processes, memory mapped files, windows messages and more just for this single instance functionality. |  | | As you can see from the code above, the OnAppStartupNextInstance event handler activates the first main form and ensures that it is restored from a minimized state. |
|
http://blogs.msdn.com/pedrosilva/archive/2005/03/09/391381.aspx
(766 words)
|
|
| |
| | BBC NEWS Business Brussels blow to Microsoft upheld |
 | | The Commission also called for Microsoft to reveal key parts of its software code to enable other software and hardware manufacturers to more easily develop products that work with Windows. |  | | The failure of its initial appeal could have huge commercial implications for the company, since the Commission ordered it to divulge some software secrets and produce a version of Windows without its digital Media Player. |  | | Microsoft wanted to delay the opening up of aspects of its Windows software system to rivals, and a record EU fine. |
|
http://news.bbc.co.uk/1/hi/business/4117217.stm
(548 words)
|
|
| |
| | Object reference not set to an instance of an object. |
 | | Object reference not set to an instance of an object. |  | | Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. |  | | Please review the stack trace for more information about the error and where it originated in the code. |
|
http://www.dotnetforce.com/Content.aspx?t=a&n=224
(123 words)
|
|
| |
| | C++ tutorial for C users |
 | | You can use it to do some calculation whenever an instance is destroyed or output some text for debugging... |  | | Perhaps you think "okay, that's a good idea to derive classes from the class octopus because that way I can apply to instances of my classes methods and function that were designed a generic way for the octopus class. |  | | But you write a function whose purpose is to sort instances of that class. |
|
http://www.4p8.com/eric.brasseur/cppcen.html
(5354 words)
|
|
| |
| | PRODUCT REVIEW: -- XML Instance 1.1 -- |
 | | XML Instance has a good interface, but it is quite spartan and minimal, in the end. |  | | On the obvious plus side, by writing XML Instance in Java, TIBCO Extensibility supports Win32, Mac, and UNIX at the same time. |  | | My test DocBook document (based on a quite complex DTD that seems to have some subtle problems of its own) validates as 100% OK in XMetal, XML Spy, and in several command-line tools. |
|
http://gnosis.cx/publish/programming/review_xmlinstance.html
(906 words)
|
|
| |
| | SAS Component Language Dictionary : INSTANCE |
 | | You cannot use the INSTANCE function to create instances of the Frame class. |  | | Load a class named Queue, a subclass of the Object class, and create two instances of the Queue class. |  | | The Inqueue class is created with a maximum number of items. |
|
http://www.sph.emory.edu/computing/unix/sas/sas8OnlineDoc/sclr/znstance.htm
(230 words)
|
|
| |
| | Instance Variable Access |
 | | In expressions within a class definition (e.g., within an instance variable's initial value expression), the internal variables declared in the class are all part of the environment. |  | | Instance variable values are accessed from outside an object with the |  | | , where o is an object and s is a symbol, extracts the value of the instance variable of o with the external name s. |
|
http://www.cs.rice.edu/CS/PLT/packages/53/doc/mzscheme/node51.htm
(132 words)
|
|
| |
| | DBAzine.com: Temporarily Using an Instance Other Than the Default DB2 Instance in Microsoft® Visual Studio .NET |
 | | You like to play around with code and databases so you have an instance that you use for development, and an instance that you use for experimentation. |  | | The results should match the name of the instance you specified in the previous step. |  | | This way, applications that connect to this database must use this alias name to work this database, so despite what the database name says, consider this the SMPLTST database. |
|
http://www.dbazine.com/db2/db2-disarticles/zikopoulos10
(1533 words)
|
|
| |
| | Instance Store |
 | | When a client asks for all web services matching a description, iS is then able to reason about the query and return all instances of the description. |  | | from our query, and retrieve all individuals instances of |  | | Mathematical service matching using Description Logic and OWL |
|
http://instancestore.man.ac.uk
(1002 words)
|
|
| |
| | As I May Think...: Using RFC3229 with Feeds. |
 | | Common practice today is for feed providers to establish a certain fixed "window size" which defines the maximum number of entries that are contained in any instance of the feed file. |  | | User agents of clients that provide support for the RFC 3229 "feed" instance manipulation method: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 FeedDemon/1.2 Beta 1 (http://www.bradsoft.com/; Microsoft Windows XP) Mozilla/5. |  | | Tracked on Sep 20, 2004 3:12:23 PM » Manipulating Feeds from Windley's Enterprise Computing Weblog |
|
http://bobwyman.pubsub.com/main/2004/09/using_rfc3229_w.html
(2844 words)
|
|
| |
| | INSTANCE |
 | | When the instance is started, an initialization parameter file is read and the instance is configured accordingly. |  | | In this section you learn how to view the values of the memory parameters in your database. |  | | After the instance is started and the database is opened, users can access the database. |
|
http://www.oracle.com/technology/obe/2day_dba/instance/instance.htm
(504 words)
|
|
| |
| | instantiate - a Whatis.com definition - see also: instantiation |
 | | The object is an executable file that you can run in a computer. |  | | 1) In object-oriented programming, some writers say that you instantiate a class to create an object, a concrete instance of the class. |  | | To instantiate is to create such an instance by, for example, defining one particular variation of object within a class, giving it a name, and locating it in some physical place. |
|
http://whatis.techtarget.com/definition/0,,sid9_gci212355,00.html
(209 words)
|
|
| |
| | Specifying the Instance Name |
 | | This file contains information about the instance, general information about the instance's applications, and information about delivery channels and protocols. |  | | For more information and examples, see Element. |  | | Since the instance name is used for several objects, and the database names are a concatenation of the instance name and "NSMain" or the application name, it is best to keep the instance name short, and to name the instance based on unchanging entities. |
|
http://msdn.microsoft.com/library/en-us/sqlntsv/htm/ns_adminconfig_092r.asp?frame=true
(376 words)
|
|
| |
| | raelity bytes |
 | | CD burners and iPods) you can't run more than one instance because they haven't sorted out hardware issues - what if one user is burning a CD, and another person wants to also burn a CD? |  | | will also add now how to have multiple instances of itunes running on one machine have fun -captnswing |  | | There could only be one instance of iTunes attached to the well known port 3689. |
|
http://www.raelity.org/computers/operating_systems/apple/mac_os_x/apps/itunes_single_instance.html
(2171 words)
|
|
| |
| | XML.com: Validation by Instance |
 | | When I use the word install in relation to a JAR file, I mean that it is somewhere on your file system and is within reach of the classpath. |  | | I usually develop my schema and instances by hand, using the |  | | I'll do this with the aid of several open source tools, and I'll also cover a way to validate the original XML instance against the various schemas. |
|
http://www.xml.com/pub/a/2002/08/28/validation.html
(690 words)
|
|
| |
| | Parameter: active_instance_count |
 | | Otherwise, do not specify any value for the parameter. |  | | Action: Check your initialization parameter files and correct the value of the ACTIVE_INSTANCE_COUNT parameter. |  | | ORA-29705: ACTIVE_INSTANCE_COUNT is %s which is incompatible with the value in other instances |
|
http://www.orafaq.org/parms/parm12.htm
(199 words)
|
|
| |
| | Tip: Send part of an XForms instance to a Web service |
 | | For example, the SOAP message may be part of a larger instance document that includes related data. |  | | However, this may not always fit with your plans. |  | | An XForms form enables you to create an instance that includes a SOAP message, but an instance can also include other data. |
|
http://www-128.ibm.com/developerworks/library/x-tipxf3
(1175 words)
|
|
| |
| | Happy Digital, Ltd. - Software - HD Instance |
 | | HD Instance is a plug-in for LightWave 7.5 and up that lets you render thousands of object instances (clones) without using up lots of memory! |  | | Happy Digital, Ltd. - Software - HD Instance |  | | You can control the instances using null objects or existing geometry, with randomized scaling, rotation and colorization options! |
|
http://www.happy-digital.com/instance.asp
(163 words)
|
|
| |
| | [No title] |
 | | Create file thishost-rx.mc: ---cut-here------------------------------ dnl To be used for MTA-RX, the first MTA instance (receiving mail) dnl Insert here the usual.mc preamble, including OSTYPE and DOMAIN calls. |  | | $+ $#error $@ 5.1.1 $: "550 User unknown" nope, go away ---end----------------------------------- Create file thishost-tx.mc: ---cut-here------------------------------ dnl To be used for MTA-TX, the second MTA instance dnl (delivering outgoing and local mail) dnl Insert here the usual.mc preamble, including OSTYPE and DOMAIN calls. |  | | If a particular macro or feature is not available with some older version, it is usually possible to achieve the same or similar by manually writing a new 'mailer' specification and/or tweaking the.cf file. |
|
http://www.ijs.si/software/amavisd/README.sendmail-dual
(1653 words)
|
|
| |
| | .NET Force :: OOPS Corner : Instance Constructors |
 | | Instance constructors of classes are invoked whenever an instance of a class is created. |  | | Instance constructors are responsible for setting an object instance to its initial state. |  | | Failing these conditions will result in a compiler error. |
|
http://www.dotnetforce.com/Content.aspx?t=a&n=224
(311 words)
|
|
| |
| | Finding an Instance |
 | | You can use the lookup bar at the bottom of the Class Pane at the Instances Tab to look for classes. |  | | If there is only one match, the selection in the the |  | | If there is more than one match, a dialog will be displayed asking you to choose the instance you want. |
|
http://www.cs.toronto.edu/~yuana/progete/doc/users_guide/instances/finding_an_instance.html
(124 words)
|
|
| |
| | The 'death of the author' as an instance of theory |
 | | For the purposes of the death of the author, the functionality of language which is most important is the first mentioned, the idea that meaning is created through difference, not through identity. |  | | A text only means because there are strands of meaning leading to all sorts of areas of experience and language use: particularly to the conventions of writing (e.g. |  | | In partial support of this it might be noted that the use of the word "original" in a positive sense to refer to 'authored' texts, paintings, etc., did not occur until the late eighteenth century, not long after, for instance, the emergence of the idea that individual actors might give their own interpretations of roles. |
|
http://www.brocku.ca/english/courses/4F70/author.html
(1844 words)
|
|
| |
| | Initialize-Instance |
 | | Methods for initialize-instance can be defined in order to perform any initialization that cannot be achieved simply by supplying initial values for slots. |  | | The generic function initialize-instance is called by make-instance to initialize a newly created instance. |  | | Methods for initialize-instance can be defined to specify actions to be taken when an instance is initialized. |
|
http://www.franz.com/support/documentation/6.1/ansicl/subsecti/initial0.htm
(344 words)
|
|
| |
| | Of Kings and Cabbage - How .NET CF application checks for the previous instance |
 | | Problem is that the second instance quits before your managed code has a chance to execute, so there is not much you can do even if you would like to implement your own logic for detecting/activating previous instance. |  | | To do this the abovementioned window is sent a message 0x8001, and then the new instance quits. |  | | In the previously active instance upon receiving of the message 0x8001 the WindowProc of #NETCF_AGL_PARK window will perform a series of steps ending with a call to SetForegroundWindow. |
|
http://blog.opennetcf.org/afeinman/PermaLink,guid,ec034858-e071-4daa-b1be-0323b7f54b11.aspx
(385 words)
|
|
| |
| | Remote instance of Eudora |
 | | Eudora is not designed to allow multiple users to access its files simultaneously; it has no mechanisms to protect files from being corrupted when accessed simultaneously by multiple users. |  | | If you are not trying to open Eudora multiple times to access the same files, then you may be getting this error after a crash. |  | | If you're using Eudora 5.1 or higher, reboot your system prior to deleting the owner.lok file. |
|
http://www.eudora.com/techsupport/kb/1486hq.html
(326 words)
|
|
| |
| | Tutorial # 2: Examples of Instance Hierarchy |
 | | { /* Create the empty instance nodes that will be used to connect the */ /* various parts of the tree together */ Ni_Add_Empty_Node(Nt_INSTANCE, "Empty Instance #1", Nt_CMDEND); Ni_Add_Empty_Node(Nt_INSTANCE, "Empty Instance #2", Nt_CMDEND); /* Create the branch of the tree by connecting the empty (null) */ /* instances together in a hierarchy. |  | | The C code to create the tree structure follows below: |  | | This tree is created by adding two empty instances to the scene using the command, creating instances of the box and sphere objects with the command, then attaching the new instances together in a tree structure using the command. |
|
http://www.okino.com/new/toolkit/tut/main6.htm
(731 words)
|
|
| |
| | The Single Instance Application |
 | | By intervening at this point, it's possible to ascertain whether a copy of the application is already running and to switch to it instead of running a new form. |  | | Often, it's necessary to ensure that only a single instance of an application is running and if the user tries to run a second copy of the application, the existing instance should show itself instead of hiding behind whatever other windows are open. |  | | The Main method creates an instance of the main form and passes this to the Application.Run method. |
|
http://www.bobpowell.net/singleinstance.htm
(203 words)
|
|
| |
| | Defining WMI Instance Names |
 | | An instance of a WMI block contains data supplied by a particular physical device or software component. |  | | WMI client applications use instance names to associate the information returned in a data block with the device or component that supplied the data. |  | | Static instance names can be based on the device instance ID of a driver's PDO, or a driver-defined base name; or the driver can define a list of instance name strings. |
|
http://www.osronline.com/ddkx/kmarch/wmi_5ijr.htm
(515 words)
|
|
| |
| | What is 'instance' in SQL Server? on SQL Newsgroups |
 | | Each of these is separate from any other. Thus, you'd need to add logins to |  | | instances), as well as one or more earlier versions. |  | | A SQL Server instance is an individual copy of the SQL Server binaries; so, |
|
http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic2668.aspx
(565 words)
|
|
| |
| | A sample HTML instance |
 | | SGML is a system for defining structured document types and markup languages to represent instances of those document types. |  | | INTRODUCTION The HyperText Markup Language is defined in terms of the ISO Standard Generalized Markup Language []. |  | | Every SGML document has three parts: An SGML declaration, which binds SGML processing quantities and syntax token names to specific values. |
|
http://www.w3.org/MarkUp/draft-ietf-iiir-html-01.txt
(5662 words)
|
|
| |
| | Configure an Instance Type |
 | | For more detailed information about configuring Layer 2 VPNs, Layer 3 VPNs, and VPLS, see JUNOS Internet Software Configuration Guide: VPNs. |  | | Nonforwarding—Use this routing instance type when a separation of routing table information is required. |  | | For this instance type, there is a one-to-one mapping between an interface and a routing instance. |
|
http://www.juniper.net/techpubs/software/junos/junos57/swconfig57-routing/html/instance-config11.html
(203 words)
|
|
| |
| | Rory Primrose : Whidbey - The Single Instance Setting |
 | | I don't have a solution but I admire the problem |  | | In the previous versions of VB, I had to include a decent amount of code to get this working (see VBAccelerator for a good example). |  | | As far as the single instance feature goes though, I do have one problem. |
|
http://highertendencies.com/archive/2005/04/24/273.aspx
(374 words)
|
|
| |
| | 28.1.9.7. Definitions of Make-Instance and Initialize-Instance |
 | | These procedures can be customized at either the Programmer Interface level, the meta-object level, or both. |  | | (let ((instance (apply #'allocate-instance class initargs))) (apply #'initialize-instance instance initargs) instance)) |  | | (defmethod initialize-instance ((instance standard-object) andrest initargs) (apply #'shared-initialize instance t initargs))) |
|
http://www.cs.cmu.edu/Groups/AI/util/html/cltl/clm/node299.html
(315 words)
|
|
|