代码搜索:Making
找到约 2,505 项符合「Making」的源代码
代码结果 2,505
www.eeworm.com/read/132667/14079298
5 changelog-1.1.5
2001-05-31 Richard Braakman
* Making release 1.1.5.
2001-05-28 Uoti Urpala
* gw/urltrans.c: Fixed handling of unrecognized %-escapes in
sms-service URLs (for
www.eeworm.com/read/203361/15360467
in configure.in
dnl Process this file with autoconf to produce a configure script.
AC_INIT(Makefile.am)
#
# Making releases:
# VIEW3DS_MICRO_VERSION += 1;
# VIEW3DS_INTERFACE_AGE += 1;
# VIEW3DS_BINARY_AGE +=
www.eeworm.com/read/112280/15490306
java stackl.java
//: c09:StackL.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Making a stack from a LinkedList.
import java.util.*;
impor
www.eeworm.com/read/112280/15490351
java queue.java
//: c09:Queue.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Making a queue from a LinkedList.
import java.util.*;
publ
www.eeworm.com/read/288458/8630860
h config.h
#ifndef _CONFIG_H
#define _CONFIG_H
/* #define LASU_HD */
#define LINUS_HD
/*
* Amount of ram memory (in bytes, 640k-1M not discounted). Currently 8Mb.
* Don't make this bigger without making sure
www.eeworm.com/read/432021/8638038
mailer
#!/usr/bin/perl
#
# $Id: mailer.txt 1339 2006-09-21 19:46:28Z tbailey $
# $Log$
# Revision 1.6 2005/09/01 21:50:59 nadya
# add a new line for making different version of sendmail to understand
# fi
www.eeworm.com/read/186023/8965801
h config.h
#ifndef _CONFIG_H
#define _CONFIG_H
/* #define LASU_HD */
#define LINUS_HD
/*
* Amount of ram memory (in bytes, 640k-1M not discounted). Currently 8Mb.
* Don't make this bigger without making sure
www.eeworm.com/read/366144/9828265
tcl gmcavity.tcl
proc gmcavity {brep1o brep2o} {
# gmset newbrep [gmcavity $brep1 $brep2]
# This routine creates a new brep formed by making brep2
# a cavity in brep1. The routine glues the two breps tog
www.eeworm.com/read/416039/11043810
h config.h
#ifndef _CONFIG_H
#define _CONFIG_H
/* #define LASU_HD */
#define LINUS_HD
/*
* Amount of ram memory (in bytes, 640k-1M not discounted). Currently 8Mb.
* Don't make this bigger without making sure
www.eeworm.com/read/140893/7117058
java stackl.java
//: c11:StackL.java
// Making a stack from a LinkedList.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import com.bruceecke