代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/183001/5260299
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
www.eeworm.com/read/167728/5454086
todo
* Newton-Maehly (Newton with implicit deflation)
* Jenkins-Traub
* Brian Smith's adaptation of Laguerre's method
* Hirano's method, SIAM J Num Anal 19 (1982) 793-99 by Murota
* Carstensen, Petkovi
www.eeworm.com/read/162614/5523143
f90 optstring_1.f90
! Test optional character arguments. We still need to pass a string
! length for the absent arguments
program optional_string_1
implicit none
call test(1, "test");
call test(2, c=42, b="Hello
www.eeworm.com/read/162614/5526085
f90 interface_2.f90
! { dg-do compile }
! PR fortran/24545
MODULE Compare_Float_Numbers
IMPLICIT NONE
INTERFACE Compare_Float
MODULE PROCEDURE Compare_Float_Single
END INTERFACE Compare_Float
INTERFACE OPE
www.eeworm.com/read/162614/5526349
f90 shift-alloc.f90
! { dg do-run }
! PR 22144: eoshift1, eoshift3 and cshift1 used to lack memory
! allocation, which caused the writes to segfault.
program main
implicit none
integer, dimension (:,:),allocatable ::
www.eeworm.com/read/162614/5526364
f90 direct_io_4.f90
! { dg-do run }
! PR 23321 : Running off the end of a file was not detected with direct I/O.
program main
implicit none
integer(kind=1) :: a, b
integer :: ios, i
a = 42
open (unit=10,status
www.eeworm.com/read/162614/5526490
f90 array_constructor_9.f90
! Like array_constructor_6.f90, but check constructors in which the length
! of each subarray can only be determined at run time.
! { dg-do run }
program main
implicit none
call build (9)
contains
www.eeworm.com/read/162614/5526536
f90 auto_save_1.f90
! { dg-do run }
! Check that automatic objects work properly in the presence of a save
! statement.
! PR21034
subroutine test(n)
implicit none
integer n
real dte(n)
character(len=n) :: s
sav
www.eeworm.com/read/344585/3207909
m mlp_kernel.m
function x = MLP_kernel(a,b, par)
% Multi Layer Perceptron kernel function for implicit higher dimension mapping
%
% x = MLP_kernel(a,b,[s,t])
%
% 'a' can only contain one datapoint in a row, 'b' c
www.eeworm.com/read/341021/3261079
f90 mpi_t1.f90
MODULE MPI_t1_s
IMPLICIT NONE
PRIVATE
PUBLIC :: MPI_SSEND_INIT
INTERFACE MPI_SSEND_INIT
MODULE PROCEDURE MPI_SSEND_INIT_T
END INTERFACE MPI_S