Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 218 for CONSTRUCTOR (0.12 sec)

  1. src/crypto/internal/boring/goboringcrypto.h

    #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.)
    /*unchecked*/ void _goboringcrypto_BORINGSSL_bcm_power_on_self_test(void);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

                }
            }
        }
    
        private static class TargetJvmEnvironmentCompatibilityRules implements AttributeCompatibilityRule<TargetJvmEnvironment>, ReusableAction {
    
            // public constructor to make reflective initialization happy.
            public TargetJvmEnvironmentCompatibilityRules() {}
    
            @Override
            public void execute(CompatibilityCheckDetails<TargetJvmEnvironment> details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. maven-core/pom.xml

                  <include>org.apache.maven.usability</include>
                </includes>
                <!-- allowed non-binary backwards compatible changes -->
                <excludes>
                  <!-- START default constructor on Plexus/JSR 330 components -->
                  <exclude>org.apache.maven.lifecycle.DefaultLifecycleExecutor#DefaultLifecycleExecutor()</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            0 * action.execute(_)
    
            def provider = container.register("task", DefaultTask, action)
    
            when:
            provider.get()
    
            then:
            def ex = thrown(GradleException)
            ex.message == "Could not create task ':project:task'."
            ex.cause.message == "Failing constructor"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

    import com.google.common.collect.ImmutableList;
    import com.google.common.testing.GcFinalization;
    import java.io.Closeable;
    import java.io.File;
    import java.lang.ref.WeakReference;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLClassLoader;
    import java.security.Permission;
    import java.security.Policy;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. settings.gradle.kts

        abstract fun build(): ArchitectureElement
    }
    
    class ArchitectureModuleBuilder(
        name: String,
        private val projectScope: ProjectScope
    ) : ArchitectureElementBuilder(name) {
        constructor(name: String) : this(name, ProjectScope("platforms/$name"))
    
        fun subproject(projectName: String) {
            projectScope.subproject(projectName)
        }
    
        override fun build(): ArchitectureModule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PostQuantizePass)
    
      // Constructor used by the PassRegistration. This will remove the adaptor ops.
      explicit PostQuantizePass() { this->emit_quant_adaptor_ops_ = false; }
    
      // Constructor used by manually creating the pass.
      explicit PostQuantizePass(bool emit_quant_adaptor_ops,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/syscall/js/js.go

    		panic(Error{makeValue(res)})
    	}
    	return makeValue(res)
    }
    
    // valueNew uses JavaScript's "new" operator with value v as a constructor and the given arguments.
    //
    // (noescape): This is safe because the args slice is only used temporarily
    //             to collect the JavaScript objects for the constructor execution.
    //
    //go:wasmimport gojs syscall/js.valueNew
    //go:noescape
    func valueNew(v ref, args []ref) (ref, bool)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/Hashing.java

        private static final MethodHandle CONSTRUCTOR = crc32cConstructor();
    
        @IgnoreJRERequirement // https://github.com/mojohaus/animal-sniffer/issues/67
        static Checksum newCrc32c() {
          try {
            return (Checksum) CONSTRUCTOR.invokeExact();
          } catch (Throwable e) {
            throwIfUnchecked(e);
            // That constructor has no `throws` clause.
            throw newLinkageError(e);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PrepareQuantizePass)
    
      // Constructor used by the PassRegistration and enforce uint8 quantization.
      // This is only used by test.
      explicit PrepareQuantizePass() : use_quantization_flags_(true) {}
    
      // Constructor used by manually creating the pass.
      explicit PrepareQuantizePass(const quant::QuantizationSpecs& quant_specs)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top