Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 306 for CONSTRUCTOR (0.17 sec)

  1. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

        private
        fun newConstructorForSerialization(beanType: Class<*>, constructor: Constructor<*>): Constructor<out Any> =
            ReflectionFactory.getReflectionFactory().newConstructorForSerialization(beanType, constructor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

          legalization.
      }];
      let constructor = "CreateAnalyzeVariablesPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def DefaultQuantParamsPass : Pass<"tfl-default-quant", "mlir::func::FuncOp"> {
      let summary = "Apply quantization with default quantization parameter";
      let constructor = "CreateDefaultQuantParamsPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/instance/ManagedProxyFactory.java

                Constructor<? extends T> constructor = generatedClass.getConstructor(GeneratedViewState.class, TypeConverter.class);
                return constructor.newInstance(state, null);
            } catch (InvocationTargetException e) {
                throw UncheckedException.throwAsUncheckedException(e.getTargetException());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

        }
    
        /**
         * The actual constructor called by concrete resolve exception implementations. Should not be
         * called except from Gradle internal code.
         *
         * <p>This constructor accepts a dummy parameter since we cannot call the constructor without it,
         * as that emits a deprecation warning. In 9.0, we can change the above constructor to protected
         * and remove this constructor.</p>
         *
         * @since 8.9
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/Jsr330ConstructorSelector.java

        }
    
        public static class CachedConstructor {
            private final ClassGenerator.GeneratedConstructor<?> constructor;
            private final RuntimeException error;
    
            private CachedConstructor(ClassGenerator.GeneratedConstructor<?> constructor, RuntimeException error) {
                this.constructor = constructor;
                this.error = error;
            }
    
            public ClassGenerator.GeneratedConstructor<?> getConstructor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:52:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

    
    /**
     * State might be corrupted and should be discarded.
     */
    @Contextual
    class ConfigurationCacheError internal constructor(
        error: String,
        cause: Throwable? = null
    ) : ConfigurationCacheThrowable, Exception(error, cause)
    
    
    @Contextual
    sealed class ConfigurationCacheException protected constructor(
        message: () -> String,
        causes: Iterable<Throwable>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/ConnectionPool.kt

     *
     * @constructor Create a new connection pool with tuning parameters appropriate for a single-user
     * application. The tuning parameters in this pool are subject to change in future OkHttp releases.
     * Currently this pool holds up to 5 idle connections which will be evicted after 5 minutes of
     * inactivity.
     */
    class ConnectionPool internal constructor(
      internal val delegate: RealConnectionPool,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 20:39:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

         * The returned {@link Instantiator} is lenient when there is a missing {@link javax.inject.Inject} annotation or null constructor parameters,
         * for backwards compatibility.
         *
         * <p>Use for any model types for which no user provided constructor values or services need to be injected. This is a convenience for {@link #decorateLenientScheme()} and will also be retired.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutExtension.java

            try {
                Constructor<?> constructor = timeout.onlyIf().getConstructors()[0];
                int paramCount = constructor.getParameterCount();
                Object[] param = new Object[paramCount];
                for (int i = 0; i < paramCount; i++) {
                    param[i] = this;
                }
                if (((Closure<Boolean>) constructor.newInstance(param)).call()) {
                    runnable.run();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        MLIR pipeline in the future.
      }];
      let constructor = "TF::CreateGpuOpFusionPass()";
    }
    
    def BatchMatMulToEinsumPass : Pass<"tf-batch-matmul-to-tf-einsum", "mlir::func::FuncOp"> {
      let summary = "Replace TF BatchMatMul op by TF Einsum op.";
      let constructor = "TF::CreateBatchMatMulToEinsumPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top