代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/233448/4678780
f90 intrinsic_mmloc.f90
! Program to test the MINLOC and MAXLOC intrinsics
program testmmloc
implicit none
integer, dimension (3, 3) :: a
integer, dimension (3) :: b
logical, dimension (3, 3) :: m, tr
integer
www.eeworm.com/read/233448/4685552
c redecl-7.c
/* Test for multiple declarations and composite types. Diagnosis of
completion incompatible with implicit initializer. */
/* Origin: Joseph Myers */
/* { dg-do compile } *
www.eeworm.com/read/233448/4686346
c redecl-8.c
/* Test for multiple declarations and composite types. Diagnosis of
completion incompatible with implicit initializer. */
/* Origin: Joseph Myers */
/* { dg-do compile } *
www.eeworm.com/read/199528/5076142
java arrayheap.java
package edu.stanford.nlp.util;
import java.util.*;
/**
* ArrayHeap:
*
* Heap implementation. Values are all implicit in the comparator
* passed in on construction. Decrease key is supported
www.eeworm.com/read/183001/5260274
out numerology.out
--
-- NUMEROLOGY
-- Test various combinations of numeric types and functions.
--
--
-- Test implicit type conversions
-- This fails for Postgres v6.1 (and earlier?)
-- so let's try explicit conversio
www.eeworm.com/read/183001/5260441
sql numerology.sql
--
-- NUMEROLOGY
-- Test various combinations of numeric types and functions.
--
--
-- Test implicit type conversions
-- This fails for Postgres v6.1 (and earlier?)
-- so let's try explicit conversi
www.eeworm.com/read/162614/5523146
f90 intrinsic_shape.f90
! Program to test the shape intrinsic
program testbounds
implicit none
real, dimension(:, :), allocatable :: a
integer, dimension(2) :: j
integer i
allocate (a(3:8, 6:7))
j = shape
www.eeworm.com/read/162614/5523208
f90 enum_3.f90
! Program to test the initialisation range of enumerators
! and kind values check
program main
implicit none
enum, bind (c)
enumerator :: red , yellow =255 , blue
end enum
enum, bind
www.eeworm.com/read/162614/5523224
f90 enum_2.f90
! Program to test the incremental assignment of enumerators
program main
implicit none
enum, bind (c)
enumerator :: red = 4 , yellow, blue
enumerator green
end enum
enum, bind (c)
www.eeworm.com/read/162614/5523231
f90 intrinsic_mmval.f90
! Program to test the MINVAL and MAXVAL intrinsics
program testmmval
implicit none
integer, dimension (3, 3) :: a
integer, dimension (3) :: b
logical, dimension (3, 3) :: m, tr
integer