代码搜索结果

找到约 10,000 项符合 Interface 的代码

comdll_tlb.h

// ************************************************************************ // // WARNING // -------

f3xx_usb0_descriptor.h

//----------------------------------------------------------------------------- // F3xx_USB0_Descriptor.h //----------------------------------------------------------------------------- // Copyrigh

orderingfunction.java

package shared; import java.lang.*; /** The interface for classes using an ordering function for sorting various lists * in the Graph class. */ public interface OrderingFunction{ /** The

input.conf

# Configuration file for the input service # This section contains options which are not specific to any # particular interface [General] # Set idle timeout (in minutes) before the connection will #

readme

Python-to-libsvm interface Introduction ============ Python (http://www.python.org/) is a programming language suitable for rapid development. This python-to-libsvm interface is developed so users

important.txt

Note to programmers: The random objects have no 'str' property yet. Instead it is called 'R_str', according to a previous version of the interface specification. Changing this is basically just a

projects

- Kristian Rietveld is working on a GNOME interface.

defconfig

# Example hostapd build time configuration # # This file lists the configuration options that are used when building the # hostapd binary. All lines starting with # are ignored. Configuration option #

factory.java

//: typeinfo/factory/Factory.java package typeinfo.factory; public interface Factory { T create(); } ///:~