代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/440906/1778485
f 13060.f
subroutine geo2()
implicit none
integer ms,n,ne(2)
ne(1) = 1
ne(2) = 2
ms = 1
call call_me(ne(1)*ne(1))
n = ne(ms)
end
www.eeworm.com/read/440906/1782717
c attr-6.c
/* Test for format attributes: test default attributes are applied
to implicit declarations. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "-std=gnu89 -Wf
www.eeworm.com/read/431110/1912506
v1
# conn for OE for network behind us.
# Uses would-be-implicit conn OEself.
include ../setup.default.new
conn OEnet
leftsubnet=192.0.2.0/24 # behind east
also=OEself
conn OEself
left=%defaultrout
www.eeworm.com/read/393688/2472708
f90 dynconst.f90
module dynconst
!
! Constants used in dynamics
!
use precision, only: r8
use shr_const_mod, only: shr_const_omega, shr_const_rearth
implicit none
private
public dynconsti
real
www.eeworm.com/read/393688/2472765
f90 dynconst.f90
module dynconst
!
! Constants used in dynamics
!
use precision, only: r8
use shr_const_mod, only: shr_const_omega, shr_const_rearth
implicit none
private
public dynconsti
real
www.eeworm.com/read/393688/2472816
f90 dynconst.f90
module dynconst
!
! Constants used in dynamics
!
use precision, only: r8
use shr_const_mod, only: shr_const_omega, shr_const_rearth
implicit none
private
public dynconsti
real
www.eeworm.com/read/388600/2548913
f90 cc2rc.f90
program CC2RC
!! interpolates from cartesian coordinates to ray coordinates
!! Paul Sava (paul@sep.stanford.edu)
!! 08/15/03
use rsf
implicit none
type (file) :: Fi, Fo, Fr
logical
www.eeworm.com/read/376006/2717760
makefile
subdir = src/interfaces/ecpg/test/thread
top_builddir = ../../../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/$(subdir)/../Makefile.regress
TESTS = thread_implicit thread_
www.eeworm.com/read/376006/2718061
out delete.out
CREATE TABLE delete_test (
id SERIAL PRIMARY KEY,
a INT
);
NOTICE: CREATE TABLE will create implicit sequence "delete_test_id_seq" for serial column "delete_test.id"
NOTICE: CREATE TABLE / P
www.eeworm.com/read/376006/2718068
out copy2.out
CREATE TABLE x (
a serial,
b int,
c text not null default 'stuff',
d text,
e text
) WITH OIDS;
NOTICE: CREATE TABLE will create implicit sequence "x_a_seq" for serial column "x.a"
CREATE FUNCTIO