代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/167185/5465893
pmux
# @(#)Pmux 1.1 7/25/91 ERL
# default parameter file for mux
int start ?= {1}: "First point(s) to process in input files";
int nan ?= {0}: "Number of points; 0 means continue to EOF";
string make_compl
www.eeworm.com/read/165926/5476491
svn-base code.t.svn-base
# code.t
use strict;
use warnings;
use Test::More tests => 6;
use Test::Differences;
BEGIN { use_ok('re::DFA::C'); }
my $code = re::DFA::C->as_code('', 'match_empty');
eq_or_diff $code,
www.eeworm.com/read/165926/5476494
t code.t
# code.t
use strict;
use warnings;
use Test::More tests => 6;
use Test::Differences;
BEGIN { use_ok('re::DFA::C'); }
my $code = re::DFA::C->as_code('', 'match_empty');
eq_or_diff $code,
www.eeworm.com/read/164931/5485930
c getqueues.c
/*
* OpenPBS (Portable Batch System) v2.3 Software License
*
* Copyright (c) 1999-2000 Veridian Information Solutions, Inc.
* All rights reserved.
*
* ---------------------------------------
www.eeworm.com/read/164931/5486101
c mom_mach.c
/*
* OpenPBS (Portable Batch System) v2.3 Software License
*
* Copyright (c) 1999-2000 Veridian Information Solutions, Inc.
* All rights reserved.
*
* ---------------------------------------
www.eeworm.com/read/162614/5523366
f90 do_1.f90
! test various forms of the DO statement
! inspired by PR14066
LOGICAL L
DO i=1,10
END DO
DO 10 i=1,20
DO 20,j=1,10,2
20 CONTINUE
10 END DO
L = .TRUE.
DO WHILE(L)
L = .FALSE.
END DO
DO 50 WHILE(
www.eeworm.com/read/162614/5526179
f backspace_4.f
! { dg-do run }
! PR25598 Error on repeated backspaces.
! Derived from example given in PR by Dale Ranta
! Contributed by Jerry DeLisle
integer data
data=-1
www.eeworm.com/read/162614/5526239
f90 assign_5.f90
! { dg-do run }
! Assign a label to a dummy argument.
! Option passed to avoid excess errors from obsolete warning
! { dg-options "-w" }
subroutine s1 (a)
integer a
assign 777 to a
go to a
777 contin
www.eeworm.com/read/162614/5526253
f backspace_3.f
! { dg-do run }
! PR25598 Error on repeated backspaces.
! Derived from example given in PR by Dale Ranta
! Contributed by Jerry DeLisle
integer data
data=-1
www.eeworm.com/read/162614/5526292
f90 assign.f90
! { dg-do run }
! Program to test ASSIGNing a label to common variable. PR18827.
program test
integer i
common i
assign 2000 to i ! { dg-warning "Obsolete: ASSIGN statement" }