代码搜索结果

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

p.java

//: com:bruceeckel:tools:P.java // From 'Thinking in Java, 2nd ed.' by Bruce Eckel // www.BruceEckel.com. See copyright notice in CopyRight.txt. // The P.rint & P.rintln shorthand. package com.bru

p.i

abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789

p-1

#!/bin/sh if test "$VERBOSE" = yes; then set -x mkdir --version fi pwd=`pwd` tmp=`echo "$0"|sed 's,.*/,,'`.tmp trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0 trap '(exit $?); exit' 1 2

p-2

#!/bin/sh # Just like p-1, but with an absolute path. if test "$VERBOSE" = yes; then set -x mkdir --version fi pwd=`pwd` tmp=`echo "$0"|sed 's,.*/,,'`.tmp trap 'status=$?; cd $pwd; rm -rf $tmp &

p.java

//: com:bruceeckel:tools:P.java // The P.rint & P.rintln shorthand. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. package c

p.java

//: com:bruceeckel:tools:P.java // The P.rint & P.rintln shorthand. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. package c

pk.p

/* * kernel level */ #ifdef KERNEL #define PADDR ((struct pack *)tp->t_linep) #define TURNOFF pkturnoff(tp) #define UCOUNT u.u_count #define S tp #define P pk->p_ttyp #define SDEF struct tty

p2

.NH BASICS .NH 2 Program Arguments .PP When a C program is run as a command, the arguments on the command line are made available to the function .UL main as an argument count .UL argc and an array .U