代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/378188/9242475
all x.all
#!/bin/sh
#
# Execute script for program mod2as of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
e
www.eeworm.com/read/378188/9242665
all x.all
#!/bin/sh
#
# Execute script for program mod1a of the EuroBen OpenMP Benchmark.
#
if [ ${OMP_NUM_THREADS} -lt 10 ]; then
FILEXT="p0${OMP_NUM_THREADS}"
else
FILEXT="p${OMP_NUM_THREADS}"
fi
ex
www.eeworm.com/read/366065/9834721
3 recevalobj.3
'\"
'\" Copyright (c) 1997 Sun Microsystems, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
'\" RC
www.eeworm.com/read/365930/9839487
dfm uservermainform.dfm
object frmServer: TfrmServer
Left = 0
Top = 0
Caption = 'Server'
ClientHeight = 459
ClientWidth = 600
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
www.eeworm.com/read/362509/9995324
cpp webcam.cpp
//-------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
www.eeworm.com/read/362473/9997625
h udpclient.h
#ifndef _UDP_CLIENT_H_
#define _UDP_CLIENT_H_
#include "Task.h"
class CUDPClient : public CTask
{
public:
virtual int Execute( );
virtual bool MayEnd( );
CUDPClient();
virtual ~CUDPCli
www.eeworm.com/read/362473/9997630
h task.h
#ifndef _TASK_H_
#define _TASK_H_
#include "CommHead.h"
const int THREAD_NAME_LENGTH = 50;
//定义一个任务类,作为一切任务的基类
class CTask
{
public:
CTask();
CTask(CTask* task);
virtual bool Ma