Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,085 for CONSTRUCTOR (0.15 sec)

  1. 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)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/FormattingValidationProblemCollector.java

        }
    
        @Override
        public void add(Constructor<?> constructor, String problem) {
            String description = MethodDescription.name(ModelType.of(constructor.getDeclaringClass()).getDisplayName())
                    .takes(constructor.getGenericParameterTypes())
                    .toString();
            problems.add("Constructor " + description + " is not valid: " + problem);
        }
    
        public String format() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/imports.ir.txt

          $this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.CodeFragment
          CONSTRUCTOR visibility:public <> () returnType:<root>.CodeFragment [primary]
            BLOCK_BODY
              DELEGATING_CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in kotlin.Any'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

                        final Constructor<Runner> constructor = runnerClass.getConstructor(Class.class);
                        return constructor.newInstance(testClass);
                    } catch (Throwable e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEvent.kt

        val correlationId: String,
        val scriptFile: File?,
        val response: KotlinBuildScriptModel
    ) : ResolverEvent()
    
    
    internal
    data class ResolvedDependencies internal constructor(
        val correlationId: String,
        val scriptFile: File?,
        val dependencies: KotlinScriptExternalDependencies
    ) : ResolverEvent()
    
    
    internal
    data class ResolvedDependenciesWithErrors internal constructor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ValidationProblemCollector.java

        /**
         * Adds a problem with a method.
         */
        void add(Method method, String role, String problem);
    
        /**
         * Adds a problem with a constructor.
         */
        void add(Constructor<?> constructor, String problem);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGenerator.java

            for (Constructor<?> constructor : implClass.getConstructors()) {
                Type[] paramTypes = new Type[constructor.getParameterTypes().length];
                for (int i = 0; i < paramTypes.length; i++) {
                    paramTypes[i] = Type.getType(constructor.getParameterTypes()[i]);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top