代码搜索结果

找到约 10,206 项符合 Storage 的代码

datatype3.tcl

set rcsid {$Id: datatype3.tcl,v 1.10 2004/11/19 11:59:24 danielk1977 Exp $} source common.tcl header {Datatypes In SQLite Version 3} puts { Datatypes In SQLite Version 3 1. Storage Class

sources

TARGETNAME=ideDiskSample TARGETPATH=$(BASEDIR)\lib TARGETTYPE=DRIVER INCLUDES=$(BASEDIR)\src\storage\inc SOURCES=ide.c \ init.c \ utils.c \ config.c \ ide.r

mapper.java

public class Mapper{ CubbyHole [] storage; // data parallel "machine" "pvar" int inArrayLength; // length of input array public BarrierSynch waiting; // object

create_tablespace.sql

create tablespace ts_default default storage(initial 128k next 128k maxextents unlimited pctincrease 0) datafile '/opt/oracle/oradata/oradb/ts_default.dbf' size 50M; create tablespace ts_data default

kbm_stub.asm

mouse_idV: equ mouse_RAM_baseC+0 ;mouse report ID mouse_packetV: equ mouse_RAM_baseC+1 ;received mouse packet storage (4 bytes) last_mouse_packetV: equ mouse_RAM_baseC+5 ;previous received

u盘.txt

插上u盘后,启动信息 Freeing init memory: 52K hub.c: USB new device connect on bus1/1, assigned device number 2 scsi0 : SCSI emulation for USB Mass Storage devices Vendor: 联创伟业 Model: USB Flash Drive R

simulators.cpp

#include #include #include #include using namespace std; #include "Storage.cpp" void main() { const int sLong = 128; int number; string op

storage.h

/* ********************************************************************************************************* * File: storage.h * Contents: * * $Date: 04/06/06 Kimi v0.1 *

stack.java

//: net/mindview/util/Stack.java // Making a stack from a LinkedList. package net.mindview.util; import java.util.LinkedList; public class Stack { private LinkedList storage = new Linke

simplequeue.java

//: generics/SimpleQueue.java // A different kind of container that is Iterable import java.util.*; public class SimpleQueue implements Iterable { private LinkedList storage = new Lin