代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/162614/5526211
f90 array_alloc_2.f90
! Like array_alloc_1.f90, but check cases in which the array length is
! not a literal constant.
! { dg-do run }
program main
implicit none
integer, parameter :: n = 100
call test (n, f1 ())
c
www.eeworm.com/read/162614/5526258
f90 char_pointer_func.f90
! { dg-do run }
program char_pointer_func
! Test assignments from character pointer functions, required
! to fix PR17192 and PR17202
! Provided by Paul Thomas pault@gcc.gnu.org
implicit none
chara
www.eeworm.com/read/162614/5526392
f90 pure_byref_2.f90
! { dg-do run }
! PR 22607: PURE return-by-reference functions
program main
implicit none
integer, dimension(2) :: b
b = fun(size(b))
if (b(1) /= 1 .or. b(2) /= 2) call abort()
contains
pure
www.eeworm.com/read/344585/3207877
m rbf_kernel.m
function x = RBF_kernel(a,b, sigma2)
% Radial Basis Function (RBF) kernel function for implicit higher dimension mapping
%
% X = RBF_kernel(a,b,sig2)
%
% 'sig2' contains the SQUARED variance of the R
www.eeworm.com/read/305277/3778588
scala bug720.scala
trait Conv
object Conv {
implicit def one2two (one: One): Two = new Two }
class One extends Conv
class Two
object Test2 extends Application {
def fun (two: Two) = ()
fun(new One)
}
www.eeworm.com/read/305277/3779043
check t0226.check
t0226.scala:5: error: not found: type A1
(implicit _1: Foo[List[A1]], _2: Foo[A2]): Foo[Tuple2[List[A1], A2]] =
^
t0226.scala:5:
www.eeworm.com/read/305277/3779327
scala moors.scala
object Test {
implicit def foo2bar(foo :Foo) :Bar = foo.bar
class Foo(val bar :Bar) {
def testCoercion ={ val a: this.type = this; a.baz /* here, foo2bar is inferred by the compiler, as exp
www.eeworm.com/read/393688/2472674
f cpr.f
subroutine cpr (nlon, nlat, nlev, nlevp, numcases, lnorm, verbose)
!
! $Id: cpr.F,v 1.2.6.1 2002/05/13 17:59:24 erik Exp $
!
use precision
use header
use stats
use nldat
implicit none
inc
www.eeworm.com/read/366702/2868860
c explicit-instantiation2.c
// Bug 10968: implicit instantiation overrides explicit instantiation
// { dg-final { scan-assembler "_Z1fIiET_S0_" } }
template T f (T t) { return t; }
inline void g () { f (4); }
template
www.eeworm.com/read/366702/2873149
f90 adjustr.f90
! pr 15294 - [gfortran] ADJUSTR intrinsic accesses corrupted pointer
!
program test_adjustr
implicit none
integer test_cases
parameter (test_cases=13)
integer i
character(len=10) s1(test_c