Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 165 for constructorsOf (0.3 sec)

  1. android/guava-tests/test/com/google/common/io/CharSourceTest.java

     *
     * @author Colin Decker
     */
    public class CharSourceTest extends IoTestCase {
    
      @AndroidIncompatible // Android doesn't understand suites whose tests lack default constructors.
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        for (boolean asByteSource : new boolean[] {false, true}) {
          suite.addTest(
              CharSourceTester.tests(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        }
    
        void ssn139() throws IOException {
            Name calledName = new Name( address.firstCalledName(), 0x20, null );
            do {
    /* These Socket constructors attempt to connect before SO_TIMEOUT can be applied
                if (localAddr == null) {
                    socket = new Socket( address.getHostAddress(), 139 );
                } else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/MD4.java

         */
        private byte[] buffer = new byte[BLOCK_LENGTH];
    
        /**
         * 512 bits work buffer = 16 x 32-bit words
         */
        private int[] X = new int[16];
    
    
    // Constructors
    //...........................................................................
    
        public MD4 () {
            super("MD4");
            engineReset();
        }
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                val callExpression = (psi as? KtExpression)?.getPossiblyQualifiedCallExpression()
                if (callExpression != null) {
                    val constructors = findQualifierConstructors()
                    val calls = toKtCalls(constructors)
                    return KaErrorCallInfo(calls, inapplicableCandidateDiagnostic(), token)
                }
            }
    
            if (this is FirImplicitInvokeCall) {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

                        // return TestUtil.newInstance(type, params)
                        assert type.constructors.size() == 1
                        return type.cast(type.constructors[0].newInstance(params))
                    } else {
                        return TestUtil.newInstance(type)
                    }
                }
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/scope.h

    /// @{
    
    /// A `Scope` object represents a set of related TensorFlow ops that have the
    /// same properties such as a common name prefix.
    ///
    /// A Scope object is a container for TensorFlow Op properties. Op constructors
    /// get a Scope object as a mandatory first argument and the constructed op
    /// acquires the properties in the object.
    ///
    /// A simple example:
    ///
    ///     using namespace ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                !is KaDeclarationSymbol -> {
                    // File, package, etc.
                    return false
                }
    
                is KaSamConstructorSymbol -> {
                    // SAM constructors are always top-level
                    return false
                }
    
                is KaScriptSymbol -> {
                    // Scripts are always top-level
                    return false
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/goboringcrypto.h

    #include <stdlib.h> // size_t
    #include <stdint.h> // uint8_t
    
    // This symbol is hidden in BoringCrypto and marked as a constructor,
    // but cmd/link's internal linking mode doesn't handle constructors.
    // Until it does, we've exported the symbol and can call it explicitly.
    // (If using external linking mode, it will therefore be called twice,
    // once explicitly and once as a constructor, but that's OK.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

      private static Map<String, String> toHashMap(Entry<String, String>[] entries) {
        return populate(new HashMap<String, String>(), entries);
      }
    
      // TODO: call conversion constructors or factory methods instead of using
      // populate() on an empty map
      private static <T, M extends Map<T, String>> M populate(M map, Entry<T, String>[] entries) {
        for (Entry<T, String> entry : entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            private final List<Class<?>> injectedServices;
            private final List<Class<? extends Annotation>> annotationsTriggeringServiceInjection;
            private final List<GeneratedConstructor<Object>> constructors;
    
            public GeneratedClassImpl(Class<?> generatedClass, @Nullable Class<?> outerType, List<Class<?>> injectedServices, List<Class<? extends Annotation>> annotationsTriggeringServiceInjection) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top