代码搜索:executing
找到约 1,160 项符合「executing」的源代码
代码结果 1,160
www.eeworm.com/read/127767/14335811
txt e089. executing a command.txt
See also e90 Reading Output from a Command.
try {
// Execute a command without arguments
String command = "ls";
Process child = Runtime.getRuntime().exec(command);
www.eeworm.com/read/115609/15006166
htm executing a query that returns a result set.htm
Executing a query that returns a result set
www.eeworm.com/read/127767/14337625
txt e265. executing a batch of sql statements in a database.txt
With batch updating, a set of SQL statements is assembled and then sent altogether to the database for execution. Batch updating can improve performance.
This example creates a batch of insert state
www.eeworm.com/read/187283/8836164
gdbinit .gdbinit
define pr
set debug_rtx ($)
end
document pr
Print the full structure of the rtx that is $.
Works only when an inferior is executing.
end
define pt
set debug_tree ($)
end
document pt
Print the full
www.eeworm.com/read/442113/7659588
txt abstract.txt
This example program uses RTX Kernel and shows round-robin task
switching. Two tasks (task 1 and task 2) are executing at
priority 2 while task 3 is executing at priority 4.
The task execution o
www.eeworm.com/read/103308/6220009
sh getrevisionssince.sh
#!/bin/bash
echo "Executing: cd $1"
cd $1
echo "Executing: cvs -d $2 log $3\"$4 $5 $6\" $7 $8"
cvs -d $2 log $3"$4 $5 $6" $7 $8
www.eeworm.com/read/103308/6220020
sh getworkingproject.sh
#!/bin/sh
echo "Executing: cd $1"
cd $1
echo "Executing: cvs -d $2 checkout$3 $4"
cvs -d $2 checkout $3 $4
www.eeworm.com/read/229184/14350068
csh ranlib.csh
#!/bin/csh -f
#
# tests to see if the program 'ranlib' exists. If it does, runs ranlib on
# the first argument (a library name). Otherwise, does nothing, and returns
#
echo "executing 'ranlib $1'..