代码搜索:stuff
找到约 10,000 项符合「stuff」的源代码
代码结果 10,000
www.eeworm.com/read/111495/6961260
todo
ToDo-/Buglist 2002/02/17 (0.3.2)
--------------------------------
Misc Stuff
* port this driver to fit into the linux kernel's
mtd device drivers.
* join with ctflasher code
* port to *BSD (if
www.eeworm.com/read/458682/7291504
sh ex37.sh
#!/bin/bash
dir1=/usr/local
dir2=/var/spool
pushd $dir1
# Will do an automatic 'dirs' (list directory stack to stdout).
echo "Now in directory `pwd`." # Uses back-quoted 'pwd'.
# Now, do some stuff
www.eeworm.com/read/298581/7950486
h tcpexactive.h
//
// Example of using TCP/IP with Rsocket interface
//
// Will retrieve a Web page the hard way by resolving the IP addess of
// a server, constructing a HTTP: request, sending it to the server,
www.eeworm.com/read/142558/12939781
ini picasa.ini
[Picasa]
name=texture
description=
date=36901.914167
category=Other Stuff
www.eeworm.com/read/138685/13225773
cpp dist_normaltest.cpp
/*
This program tests the normal distribution function and uses the
already proven mcsLibreCollectStats class to return data on the
function's output.
*/
#include
#include
#i
www.eeworm.com/read/305152/13778236
pas login.pas
unit login;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Mask, ExtCtrls;
type
Tlog = class(TForm)
Edit1: TEdit;
Edit2:
www.eeworm.com/read/304259/13797116
m getoecf.m
function [array, status] = getoecf(array, oepath,oename);
% [array, status] = getoecf(array, oepath,oename) Read and apply oecf
% Reads look-up table and applies it to a data array
% array = data a
www.eeworm.com/read/300969/13876517
h mm.h
/* This is the master header for mm. It includes some other files
* and defines the principal constants.
*/
#define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
#define _MINIX
www.eeworm.com/read/300969/13877101
h fs.h
/* This is the master header for fs. It includes some other files
* and defines the principal constants.
*/
#define _POSIX_SOURCE 1 /* tell headers to include POSIX stuff */
#define _MINIX
www.eeworm.com/read/144216/5752593
t chop.t
#!./perl
print "1..37\n";
# optimized
$_ = 'abc';
$c = do foo();
if ($c . $_ eq 'cab') {print "ok 1\n";} else {print "not ok 1 $c$_\n";}
# unoptimized
$_ = 'abc';
$c = chop($_);
if ($c . $_ eq 'c