Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 539 for CONSTRUCTOR (0.18 sec)

  1. 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)
  2. 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)
  3. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

              .reverse();
      private static final Ordering<Constructor<?>> WITH_STRING_PARAM_THEN_WITH_THROWABLE_PARAM =
          ORDERING_BY_CONSTRUCTOR_PARAMETER_LIST.onResultOf(
              constructor -> asList(constructor.getParameterTypes()));
    
      @CheckForNull
      private static <X> X newFromConstructor(Constructor<X> constructor, Throwable cause) {
        Class<?>[] paramTypes = constructor.getParameterTypes();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            factories.add(factory);
          }
        }
        if (!Modifier.isAbstract(type.getRawType().getModifiers())) {
          for (Constructor<?> constructor : type.getRawType().getDeclaredConstructors()) {
            Invokable<T, T> invokable = type.constructor(constructor);
            if (!invokable.isPrivate() && !invokable.isSynthetic()) {
              factories.add(invokable);
            }
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

         *
         * @param serviceType The service implementation to make visible.
         */
        void add(Class<?> serviceType);
    
        /**
         * Adds a service to this registry. The implementation class should have a single public constructor, and this constructor can take services to be injected as parameters.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top