Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for setImplementation (0.2 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultCachingStateFactory.java

            final Hasher cacheKeyHasher = Hashing.newHasher();
    
            logger.warn("Appending implementation to build cache key: {}",
                beforeExecutionState.getImplementation());
            beforeExecutionState.getImplementation().appendToHasher(cacheKeyHasher);
    
            beforeExecutionState.getAdditionalImplementations().forEach(additionalImplementation -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleDependencies.java

    // end::custom-dependencies-type[]
    
    // tag::custom-dependencies-scopes[]
        /**
         * Dependency scope called "implementation"
         */
        DependencyCollector getImplementation();
    // end::custom-dependencies-scopes[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 507 bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

         * <p>
         * Note that the implementation can only be configured if the {@link #getLanguageVersion() language version} is configured as well.
         *
         * @since 6.8
         */
        Property<JvmImplementation> getImplementation();
    
        @Override
        default String getDisplayName() {
            final MoreObjects.ToStringHelper builder = MoreObjects.toStringHelper("");
            builder.omitNullValues();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

                this.afterExecutionOutputState = afterExecutionOutputState;
            }
    
            @Override
            public ImplementationSnapshot getImplementation() {
                return beforeExecutionState.getImplementation();
            }
    
            @Override
            public ImmutableList<ImplementationSnapshot> getAdditionalImplementations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

            ClassImplementationSnapshot currentImplementation = Cast.uncheckedNonnullCast(thisExecution.getImplementation());
            ClassImplementationSnapshot previousImplementation = Cast.uncheckedNonnullCast(lastExecution.getImplementation());
            ImmutableList<ImplementationSnapshot> currentAdditionalImplementations = Cast.uncheckedNonnullCast(thisExecution.getAdditionalImplementations());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExamplePlugin.java

    // tag::wire-dependencies[]
            project.getConfigurations().dependencyScope("exampleImplementation", conf -> {
                conf.fromDependencyCollector(example.getDependencies().getImplementation());
            });
    // end::wire-dependencies[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 661 bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionInputState.java

     */
    public interface ExecutionInputState {
        /**
         * The main implementation snapshots.
         */
        ImplementationSnapshot getImplementation();
    
        /**
         * Used only for tasks to return all the task actions.
         */
        ImmutableList<ImplementationSnapshot> getAdditionalImplementations();
    
        /**
         * The non-file inputs.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/AbstractInputExecutionState.java

            this.inputProperties = inputProperties;
            this.inputFileProperties = inputFileProperties;
        }
    
        @Override
        public ImplementationSnapshot getImplementation() {
            return implementation;
        }
    
        @Override
        public ImmutableList<ImplementationSnapshot> getAdditionalImplementations() {
            return additionalImplementations;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertTrue(md.isProjectRequired());
            assertFalse(md.isThreadSafe());
            assertEquals("package", md.getPhase());
            assertEquals("org.apache.maven.plugin.jar.JarMojo", md.getImplementation());
            assertEquals("antrun", md.getComponentConfigurator());
            assertEquals("java", md.getLanguage());
            assertEquals("per-lookup", md.getInstantiationStrategy());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:51:47 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

            work.visitImplementations(implementationsBuilder);
            ImplementationSnapshot implementation = implementationsBuilder.getImplementation();
            ImmutableList<ImplementationSnapshot> additionalImplementations = implementationsBuilder.getAdditionalImplementations();
    
            if (LOGGER.isDebugEnabled()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top