Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,556 for Sall (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

                thread.blockUntil.running
                lifecycle.stop()
                instant.stopped
            }
    
            then:
            instant.finished < instant.stopped
        }
    
        def "multiple threads can call stop() concurrently"() {
            expect:
            async {
                start {
                    lifecycle.use {
                        instant.running
                        thread.block()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

            when:
            module.ivy.expectMetadataRetrieve()
    
            then:
            fails 'retrieve'
            assertTaskFailureDescription(":retrieve")
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
                .assertHasCause("""Could not find org.group.name:projectA:1.2.
    Searched in the following locations:
      - ${module.ivy.uri}
    Required by:
    """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/wrapper/simple/tests/wrapperCommandLine.sample.conf

    # tag::cli[]
    # gradle wrapper --gradle-version=4.0 --distribution-type=all
    # end::cli[]
    executable: gradle
    args: "wrapper --gradle-version=4.0 --distribution-type=all"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 213 bytes
    - Viewed (0)
Back to top