代码搜索:saving
找到约 1,242 项符合「saving」的源代码
代码结果 1,242
www.eeworm.com/read/377523/9272727
java cadstate.java
//: c11:CADState.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Saving and restoring the state of a
// pretend CAD system
www.eeworm.com/read/450258/7486667
dem vector.dem
#
# $Id: vector.dem,v 1.7 2003/10/28 05:35:54 sfeam Exp $
#
# This file demonstrates new features in gnuplot 3.6
# -1- saving contour lines as a gnuplottable file
# -2- plotting a vector field on the
www.eeworm.com/read/447044/7559920
txt listing16-13_savingdatainstrings.txt
// Listing 16-13. Saving Space by Storing Array Data in Strings
// Java source code instructions:
String value = "23,57,23453,2342,232,213,345,56,6767";
String[] valueChunks = TextUtil.split( value,
www.eeworm.com/read/439468/7708196
m mil_data_save.m
function MIL_Data_Save(filename, bags)
fid = fopen(filename, 'w');
if fid == -1, error('Cannot open the file for saving'); end;
for i = 1:length(bags)
[num_inst, num_feature] = size(bags(i
www.eeworm.com/read/297233/8042112
h function.h
/* Structure for saving state for a nested function.
Copyright (C) 1989, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can redi
www.eeworm.com/read/125688/6024052
makefile
# @(#)Makefile 8.2 (Berkeley) 2/3/94
# $Id: Makefile,v 1.22 1998/09/09 11:20:23 kato Exp $
#
# All library objects contain rcsid strings by default; they may be
# excluded as a space-saving measure.
www.eeworm.com/read/410351/11292569
c ppp.c
// this unit assumes the cpu is big endian (MS-Byte 1st) - for now
//
// we don't bother with Address/Control field compression - saving 2 bytes isn't worth the extra code
// we don't bother with
www.eeworm.com/read/264792/11301249
txt readme.txt
1) Install the IEEE 802.11e module developed by team of Politecnico di Bari
2) Copy power saving files from "source" directory to "ns-2" directories
3) Use the Makefile to compile.
Ciauz
faz@
www.eeworm.com/read/218623/14911991
m mil_data_save.m
function MIL_data_save(filename, bags)
fid = fopen(filename, 'w');
if fid == -1, error('Cannot open the file for saving'); end;
for i = 1:length(bags)
[num_inst, num_feature] = size(bags(i
www.eeworm.com/read/116603/14962903
java cadstate.java
//: c11:CADState.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Saving and restoring the state of a
// pretend CAD system