Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,639 for Sall (0.03 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildOperationFiringBuildTreeWorkExecutor.java

        }
    
        @Override
        public ExecutionResult<Void> execute(BuildTreeWorkGraph.FinalizedGraph graph) {
            return buildOperationRunner.call(new CallableBuildOperation<ExecutionResult<Void>>() {
                @Override
                public ExecutionResult<Void> call(BuildOperationContext context) {
                    return delegate.execute(graph);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessor.java

        }
    
        public IncrementalCompilation processSourceFiles(final Collection<File> sourceFiles) {
            return buildOperationExecutor.call(new CallableBuildOperation<IncrementalCompilation>() {
                @Override
                public IncrementalCompilation call(BuildOperationContext context) {
                    CompilationState previousCompileState = previousCompileStateCache.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphVisitor.java

        /**
         * Visits a node of the graph. Includes the root. This method is called for all nodes before {@link #visitEdges(DependencyGraphNode)} is called.
         */
        default void visitNode(DependencyGraphNode node) {}
    
        /**
         * Visits a selector. This method is called for all selectors before {@link #visitEdges(DependencyGraphNode)} is called.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

                outputFile: outputFileSnapshot
            ]
    
            when:
            def result = packOperationExecutor.unpack(key, entity, input)
    
            then:
            1 * buildOperationRunner.call(_) >> { CallableBuildOperation action -> action.call(buildOperationContext)}
            1 * originFactory.createReader() >> originReader
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/CurrentBuildOperationRef.java

         */
        public interface Callable<T, E extends Throwable> {
            T call() throws E;
        }
    
        public <T, E extends Throwable> T with(@Nullable BuildOperationRef state, Callable<T, E> block) throws E {
            BuildOperationRef oldState = get();
            try {
                set(state);
                return block.call();
            } finally {
                set(oldState);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesChangingModulesIntegrationTest.groovy

            println "changing=" + context.details.changing
        }
    }
    
    dependencies {
        modules("org.test:moduleA:1.0") { changing = true }
        components {
            all(VerifyingRule)
        }
    }
    task resolve {
        def files = configurations.modules
        doLast {
            files*.name
        }
    }
    """
    
            expect:
            succeeds("resolve")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalPhasedActionConnection.java

     * requested by the user.
     *
     * <p>DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
     *
     * <p>Consumer compatibility: This interface is used by all consumer versions from 4.8.</p>
     * <p>Provider compatibility: This interface is implemented by all provider versions from 4.8.</p>
     *
     * @since 4.8
     * @see org.gradle.tooling.internal.protocol.ConnectionVersion4
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

     */
    
    package org.gradle.tooling.internal.adapter;
    
    import javax.annotation.Nullable;
    
    public interface ViewBuilder<T> {
    
        /**
         * Mixes the given object into all views of the given type created using {@link #build(Object)}.
         * Applied to all views reachable from created views. The mix-in object should be serializable.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/kotlin/build.gradle.kts

    }
    // end::dependencies[]
    
    if (project.hasProperty("useBom")) {
    // tag::use_bom_rule[]
    dependencies {
        components.all<JacksonBomAlignmentRule>()
    }
    // end::use_bom_rule[]
    } else {
    // tag::use_rule[]
    dependencies {
        components.all<JacksonAlignmentRule>()
    }
    // end::use_rule[]
    // tag::enforced_platform[]
    dependencies {
        // Forcefully downgrade the virtual Jackson platform to 2.8.9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/dependentComponentsReportAll.sample.conf

    # tag::cli[]
    # gradle dependentComponents --all
    # end::cli[]
    executable: gradle
    args: dependentComponents --all
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 167 bytes
    - Viewed (0)
Back to top