Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for getImplementation (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

            return getBeforeExecutionState()
                .map(ExecutionInputState::getImplementation)
                .map(BaseSnapshotInputsBuildOperationResult::getClassLoaderHashBytesOrNull)
                .orElse(null);
        }
    
        @Nullable
        public String getImplementationClassName() {
            return getBeforeExecutionState()
                .map(ExecutionInputState::getImplementation)
                .map(ImplementationSnapshot::getClassIdentifier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this.setOnlineRequired(md.isOnlineRequired());
            this.setProjectRequired(md.isProjectRequired());
            this.setSince(md.getSince());
            this.setThreadSafe(true);
            this.setImplementation(md.getImplementation());
            try {
                this.setParameters(md.getParameters().stream().map(Parameter::new).collect(Collectors.toList()));
            } catch (DuplicateParameterException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainTest.groovy

                getLanguageVersion() >> JavaLanguageVersion.of(languageVersion)
                getVendor() >> DefaultJvmVendorSpec.any().toString()
                getImplementation() >> JvmImplementation.VENDOR_SPECIFIC.toString()
            }, false)
            then:
            javaToolchain.languageVersion.asInt() == languageVersion
            javaToolchain.javaRuntimeVersion == runtimeVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

         *
         * @return a {@link DependencyCollector} that collects the set of implementation dependencies
         * @since 7.6
         */
        DependencyCollector getImplementation();
    
        /**
         * Returns a {@link DependencyCollector} that collects the set of compile-only dependencies.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorIntegrationTest.groovy

        }
    
        def createDependenciesAndConfiguration() {
            """
                abstract class MyDependencies implements Dependencies {
                    abstract DependencyCollector getImplementation()
    
                    void call(Closure closure) {
                        ${ConfigureUtil.class.name}.configure(closure, this)
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

                throw new DuplicateMojoDescriptorException(
                        getGoalPrefix(),
                        mojoDescriptor.getGoal(),
                        existing.getImplementation(),
                        mojoDescriptor.getImplementation());
            } else {
                addComponentDescriptor(mojoDescriptor);
            }
        }
    
        public String getGroupId() {
            return groupId;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionStateSerializer.java

            originMetadataSerializer.write(encoder, execution.getOriginMetadata());
    
            hashCodeSerializer.write(encoder, execution.getCacheKey());
            implementationSnapshotSerializer.write(encoder, execution.getImplementation());
            ImmutableList<ImplementationSnapshot> additionalImplementations = execution.getAdditionalImplementations();
            encoder.writeSmallInt(additionalImplementations.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:25:58 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

        setImplementation(Deque.class, ArrayDeque.class);
        setImplementation(OutputStream.class, ByteArrayOutputStream.class);
        setImplementation(PrintStream.class, Dummies.InMemoryPrintStream.class);
        setImplementation(PrintWriter.class, Dummies.InMemoryPrintWriter.class);
        setImplementation(Queue.class, ArrayDeque.class);
        setImplementation(Random.class, Dummies.DeterministicRandom.class);
        setImplementation(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            Class<?> workType = workClass.get();
            TypeValidationContext workValidationContext = validationContext.forType(workType, true);
            validateImplementation(workValidationContext, beforeExecutionState.getImplementation(), "Implementation of ", work);
            beforeExecutionState.getAdditionalImplementations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

        def cacheKey = TestHashCodes.hashCodeFrom(1234)
    
        def originMetadata = Mock(OriginMetadata)
        def beforeExecutionState = Stub(BeforeExecutionState) {
            getImplementation() >> ImplementationSnapshot.of("Test", TestHashCodes.hashCodeFrom(123))
            getAdditionalImplementations() >> ImmutableList.of()
            getInputProperties() >> ImmutableSortedMap.of()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top