代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/431110/1912488
v2
# conn for OE for network behind us.
# Uses implicit conn OEself.
version 2.0
conn private-or-clear-behind
leftsubnet=192.0.2.0/24 # behind east
also=private-or-clear
www.eeworm.com/read/427620/1969810
java mainmenu.java
package com.j2medev.chapter7;
import javax.microedition.lcdui.*;
public class MainMenu extends List implements CommandListener {
public MainMenu() {
super("Select", List.IMPLICIT);
www.eeworm.com/read/427620/1969820
java mainmenu.java
package com.j2medev.chapter7;
import javax.microedition.lcdui.*;
public class MainMenu extends List implements CommandListener {
public MainMenu() {
super("Select", List.IMPLICIT);
www.eeworm.com/read/393688/2472279
f90 mod_comm.f90
module mod_comm
implicit none
#include "misc.h"
#if defined ( SPMD )
#include "params.h"
integer maxpro ! Max no. of MLP PE allowed
integer nbuf
integer nghost
www.eeworm.com/read/393688/2472778
f90 comspe.f90
#include
#include
module comspe
!BOP
!
! !MODULE: comspe
!
! !USES:
use precision
use pmgrid
use pspect
implicit none
!
! !PUBLIC DATA MEMBERS:
!
! Spectral space
www.eeworm.com/read/376006/2717053
out plpython_schema.out
CREATE TABLE users (
fname text not null,
lname text not null,
username text,
userid serial,
PRIMARY KEY(lname, fname)
) ;
NOTICE: CREATE TABLE will create implicit sequence "users_userid_seq"
www.eeworm.com/read/366702/2869421
c static5.c
// { dg-do assemble }
// Origin: Mark Mitchell
struct S
{
~S();
};
inline void f()
{
static S s;
atexit (0); // { dg-error "" } implicit declaration
}
www.eeworm.com/read/366702/2873129
f90 arraysave.f90
! Program to test arrays with the save attribute
program testarray
implicit none
integer, save, dimension (6, 5) :: a, b
a = 0
a(1, 1) = 42
a(6, 5) = 43
b(:,1:5) = a
call fn (a)
www.eeworm.com/read/366702/2873233
f90 where_7.f90
! Really test where inside forall with temporary
program evil_where
implicit none
type t
logical valid
integer :: s
integer, dimension(:), pointer :: p
end type
type (t), dimension
www.eeworm.com/read/366702/2873240
f90 test_slice.f90
! Program to test handling of reduced rank array sections. This uncovered
! bugs in simplify_shape and the scalarization of array sections.
program test_slice
implicit none
real (kind = 8), di