代码搜索:execute

找到约 10,000 项符合「execute」的源代码

代码结果 10,000
www.eeworm.com/read/378186/9242979

all x.all

#!/bin/sh # # Execute script for program pingpong of the EuroBen Efficiency Benchmark. # exec 1>> pingpong.log 2>&1 echo 'start pingpong at' `date` 'id =' $$ time mpirun -np 2 x.pingpong #time mpiexec
www.eeworm.com/read/378186/9243001

all x.all

#!/bin/sh # # Execute script for program transp of the EuroBen Efficiency Benchmark. # exec 1>> transp.log 2>&1 echo 'start transp at' `date` 'id =' $$ time mpirun -np 8 x.transp #time mpiexec -n 8 x.
www.eeworm.com/read/378186/9243016

all x.all

#!/bin/sh # # Execute script for program ping of the EuroBen Efficiency Benchmark. # exec 1>> ping.log 2>&1 echo 'start ping at' `date` 'id =' $$ time mpirun -np 2 x.ping #time mpiexec -n 2 x.ping ech
www.eeworm.com/read/378186/9243044

all x.all

#!/bin/sh # # Execute script for program gmxv of the EuroBen Efficiency Benchmark. # exec 1>> gmxv.log 2>&1 echo 'start gmxv at' `date` 'id =' $$ time x.gmxv echo 'end gmxv at' `date` 'id =' $$
www.eeworm.com/read/378186/9243078

all x.all

#!/bin/sh # # Execute script for program gmxm of the EuroBen Efficiency Benchmark. # exec 1>> gmxm.log 2>&1 echo 'start gmxm at' `date` 'id =' $$ time x.gmxm echo 'end gmxm at' `date` 'id =' $$
www.eeworm.com/read/378186/9243103

all x.all

#!/bin/sh # # Execute script for program linspar of the EuroBen Efficiency Benchmark. # exec 1>> linspar.log 2>&1 echo 'start linspar at' `date` 'id =' $$ time x.linspar echo 'end linspar at' `date` '
www.eeworm.com/read/378186/9243139

all x.all

#!/bin/sh # # Execute script for program qsort of the EuroBen Efficiency Benchmark. # exec 1>> qsort.log 2>&1 echo 'start qsort at' `date` 'id =' $$ time x.qsort echo 'end qsort at' `date` 'id =' $$
www.eeworm.com/read/378186/9243269

all x.all

#!/bin/sh # # Execute script for program commun of the EuroBen Efficiency Benchmark. # exec 1>> commun.log 2>&1 echo 'start commun at' `date` 'id =' $$ time mpirun -np 6 x.commun #time mpiexec -n 6 x.
www.eeworm.com/read/181480/9249039

asp del.asp

www.eeworm.com/read/377958/9255428

sql 动态构造语句.sql

declare @dbname varchar(10),@tbname varchar(10),@colname varchar(10) set @dbname='northwind' set @tbname='customers' set @colname='city' execute ('use ' + @dbname+ ' select ' + @colname + ' from