代码搜索:until
找到约 4,232 项符合「until」的源代码
代码结果 4,232
www.eeworm.com/read/354597/10342989
exe until.exe
www.eeworm.com/read/354597/10343142
mak until.mak
#
# Makefile for UNTIL.EXE
#
# Compiler : Microsoft C 6.0
# Created : 13.8.1992
# Copyright (c) : Martti Ylikoski, 1992
#
# Notes: The llibcep.lib is the default library in my
www.eeworm.com/read/354597/10343164
txt until.txt
UNTIL [DUAL MODE]
NAME UNTIL - Waits until a specified time.
SYNTAX
until time
USAGE
Until
www.eeworm.com/read/149876/5696456
c until.c
foo (void)
{
int i, x, y, z;
x = 0;
y = 1;
i = 0;
while (i < 2)
i++;
x = i;
y = 2 * x;
z = x + y;
y = x + z;
x = 9;
y = 10;
}
main ()
{
int a = 1;
foo ();
a += 2;
return 0;
}
www.eeworm.com/read/148694/5711891
c until.c
foo (void)
{
int i, x, y, z;
x = 0;
y = 1;
i = 0;
while (i < 2)
i++;
x = i;
y = 2 * x;
z = x + y;
y = x + z;
x = 9;
y = 10;
}
main ()
{
int a = 1;
foo ();
a += 2;
return 0;
}
www.eeworm.com/read/117181/6110790
c until.c
foo (void)
{
int i, x, y, z;
x = 0;
y = 1;
i = 0;
while (i < 2)
i++;
x = i;
y = 2 * x;
z = x + y;
y = x + z;
x = 9;
y = 10;
}
main ()
{
int a = 1;
foo ();
a += 2;
return 0;
}
www.eeworm.com/read/404558/11482745
until_who~
#until_who
IS_ROOT=`who | grep root`
until [ "$IS_ROOT" ]
do
sleep 5
IS_ROOT=`who | grep root`
done
echo "watch root in">>/tmp/root.log
echo "date is: " `date` >>/tmp/root.log
echo "******************
www.eeworm.com/read/404558/11482748
until_who
#!/bin/bash
#until_who
IS_ROOT=`who | grep root`
until [ "$IS_ROOT" ]
do
sleep 5
IS_ROOT=`who | grep root`
done
echo "watch root in">>/tmp/root.log
echo "date is: " `date` >>/tmp/root.log
echo "******
www.eeworm.com/read/116739/14956338
until2
#!/bin/ksh
# Script name: until2
# Example 10.105
hour=0
until (( hour > 23 ))
do
case "$hour" in
[0-9]|1[0-1]) print "Good morning!"
;;
12) print "Lunch time"
;;
1[3
www.eeworm.com/read/210427/15198787
txt until.txt
unit Unit1;
interface
uses
SysUtils, Forms, crc32, ComCtrls, StdCtrls, ExtCtrls, Classes,
Controls, Dialogs;
type
TForm1 = class(TForm)
Panel1: TPanel;
Button1: TButton;