代码搜索:OPERATION
找到约 10,000 项符合「OPERATION」的源代码
代码结果 10,000
www.eeworm.com/read/127781/6000801
pcmcia
Kernel Low-Level PCMCIA Interface Documentation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
John G Dorsey
Updated: 30 June, 2000
Note: this interface has not been finalized!
S
www.eeworm.com/read/127043/6009657
java nulltransactionmanager.java
/**
* Redistribution and use of this software and associated documentation
* ("Software"), with or without modification, are permitted provided
* that the following conditions are met:
*
* 1
www.eeworm.com/read/126074/6018625
exp drtest06.exp
TRUE
CLIPS> (batch "drtest06.bat")
TRUE
CLIPS> (clear) ; DR0501
CLIPS> (defmessage-handler USER foo ()) ; DR0501
CLIPS> (clear) ; DR0501
CLIPS>
www.eeworm.com/read/125688/6022931
h pg.h
/* pg.h (c) 1998 Grant R. Guenther
Under the terms of the GNU public license
pg.h defines the user interface to the generic ATAPI packet
command driver for pa
www.eeworm.com/read/125688/6024934
h errno.h
/*
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
* (c) UNIX System Laboratories, Inc.
* All or some portions of this file are derived
www.eeworm.com/read/125439/6028740
java subb.java
package com.javapatterns.doubledispatch.mixed;
public class SubB extends Super
{
public void operation(SubB b)
{
System.out.println("This is SubB.operation(SubB);");
}
www.eeworm.com/read/125439/6028742
java suba.java
package com.javapatterns.doubledispatch.mixed;
public class SubA extends Super
{
public void operation(SubA a)
{
System.out.println("This is SubA.operation(SubA);");
}
www.eeworm.com/read/125439/6028803
java client.java
package com.javapatterns.iterator.blackbox;
public class Client
{
/**
* @directed
*/
private Iterator it;
/**
* @directed
*/
private Aggregate agg =
www.eeworm.com/read/125439/6028824
java client.java
package com.javapatterns.iterator.whitebox;
public class Client
{
/**
* @directed
*/
private Iterator it;
/**
* @directed
*/
private Aggregate agg =
www.eeworm.com/read/125114/6033465
java subb.java
package com.javapatterns.doubledispatch.mixed;
public class SubB extends Super
{
public void operation(SubB b)
{
System.out.println("This is SubB.operation(SubB);");
}