代码搜索:until
找到约 4,232 项符合「until」的源代码
代码结果 4,232
www.eeworm.com/read/131315/5939073
h nm-trash.h
/* this file is temporary scaffolding until all hosts have the
native/target/host split in place. FIXME. */
www.eeworm.com/read/126061/6019051
java staticfitnessfunction.java
/*
* This file is part of JGAP.
*
* JGAP offers a dual license model containing the LGPL as well as the MPL.
*
* For licencing information please see the file license.txt included with JGAP
www.eeworm.com/read/106490/6192584
java server.java
//==============================================================
// Server.java - Server class queues and processes jobs using threads
//
// Java学习源代码检索系统 Ver 1.0 20031015 免费正式版
// 版权所有: 中国IT认证实验室
www.eeworm.com/read/101082/6244982
1 wait.1
.\" SCCSID: @(#)wait.1 8.1 9/11/90
.TH wait 1
.SH Name
wait \- wait for process completion
.SH Syntax
.B wait
[\fIpid\fR]
.SH Description
.NXR "wait command (general)"
.NXA "sh command interpreter" "
www.eeworm.com/read/101082/6246861
1 wait.1
.\" SCCSID: @(#)wait.1 8.1 9/11/90
.TH wait 1
.SH Name
wait \- wait for process completion
.SH Syntax
.B wait
[\fIpid\fR]
.SH Description
.NXR "wait command (general)"
.NXA "sh command interpreter" "
www.eeworm.com/read/417423/6302785
txt test2.txt
program example5;
var A,B,C,D,W:integer;
begin
A:=5; B:=4; C:=3; D:=2; W:=1;
if W>=1 then A:=B*C+B/D else
repeat A:=A+1; until A
www.eeworm.com/read/488542/6488919
c bl_ssi.c
//*****************************************************************************
//
// bl_ssi.c - Functions used to transfer data via the SSI port.
//
// Copyright (c) 2006-2008 Luminary Micro, Inc
www.eeworm.com/read/407631/11412895
txt test4.txt
program example5;
var A,B,C,D,W:integer;
begin
A:=5;B:=4;C:=3;D:=2;W:=1;
if W>=1 then A:=B*C+B/D
else repeat A:=A+1 until A
www.eeworm.com/read/404697/11479926
txt testpas2.txt
var x,y,z;
begin
x:=10;
y:=-5;
read(z);
repeat
if z >5 then
begin
z:=z+8;
z:=z+z;
end;
else
z:=z+4;
until
z>1