Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 649 for Sall (0.03 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/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)
  4. 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)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/configuration/AllProperties.java

    import java.util.Map;
    
    /**
     * An immutable view of all properties available for build options, calculated from command-line options, the environment and the various
     * properties files.
     */
    public interface AllProperties {
        /**
         * Returns the system properties defined as command-line options.
         */
        Map<String, String> getRequestedSystemProperties();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/AsyncCacheAccess.java

         */
        void enqueue(Runnable task);
    
        /**
         * Runs the given action, blocking until the result is available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSourceBuilder.java

            if (buildSrcBuild == null) {
                return ClassPath.EMPTY;
            }
    
            return buildOperationRunner.call(new CallableBuildOperation<ClassPath>() {
                @Override
                public ClassPath call(BuildOperationContext context) {
                    ClassPath classPath = buildBuildSrc(buildSrcBuild);
                    context.setResult(BUILD_BUILDSRC_RESULT);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        }
    
        @Override
        List<BuildOperationRecord> all() {
            return operations.records.values().toList()
        }
    
        @Override
        List<BuildOperationRecord> all(Pattern displayName) {
            return operations.records.values().findAll { it.displayName ==~ displayName }
        }
    
        @Override
        BuildOperationRecord only(Pattern displayName) {
            def records = all(displayName)
            if (records.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputs.java

    /**
     * The outputs of a graph resolution. All results on this type are lazy. Resolution is only performed
     * when the results are accessed.
     *
     * TODO: This type is intended to be made public in future Gradle versions, in some form.
     */
    @HasInternalProtocol
    public interface ResolutionOutputs {
    
        /**
         * A {@link FileCollection} containing all resolved files. The returned collection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/resolve/DependencyResolutionManagement.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Allows configuring dependency resolution for all projects of the build.
     *
     * @since 6.8
     *
     */
    @HasInternalProtocol
    public interface DependencyResolutionManagement {
        /**
         * Configures the repositories used by all projects
         * @param repositoryConfiguration the repositories configuration
         */
        @Incubating
        @Configuring
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top