Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 310 for completeAll (0.16 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListener.java

        public void output(TestDescriptorInternal testDescriptor, TestOutputEvent event) {
        }
    
        /**
         * Completes and clears registered progress loggers even if test worker crashed.
         */
        public void completeAll() {
            for (ProgressLogger progressLogger : testWorkerProgressLoggers.values()) {
                progressLogger.completed();
            }
    
            testWorkerProgressLoggers.clear();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListenerTest.groovy

            testWorkerProgressListener.testWorkerProgressLoggers.get(testEvent2.progressLoggerDescription) == testWorkerProgressLogger2
    
            when:
            testWorkerProgressListener.completeAll()
    
            then:
            1 * testWorkerProgressLogger1.completed()
            1 * testWorkerProgressLogger2.completed()
            testWorkerProgressListener.testWorkerProgressLoggers.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

            try {
                testExecuter.execute(executionSpec, resultProcessor);
            } finally {
                parentProgressLogger.completed();
                testWorkerProgressListener.completeAll();
                testListenerSubscriptions.removeAllListeners();
                testOutputListenerSubscriptions.removeAllListeners();
                testListenerInternalBroadcaster.removeAll();
                outputWriter.close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/groovy/build.gradle

            metaInf {
                ignoreManifest()
            }
        }
    }
    // end::ignore-metainf-manifest[]
    
    // tag::ignore-metainf-completely[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreCompletely()
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/kotlin/build.gradle.kts

            metaInf {
                ignoreManifest()
            }
        }
    }
    // end::ignore-metainf-manifest[]
    
    // tag::ignore-metainf-completely[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreCompletely()
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 763 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    eSend:function(t){var e=t.xhr;e.upload&&Ut(e.upload,"progress",n.progress),["loadStart","load","loadEnd","abort"].forEach(function(t){return Ut(e,t.toLowerCase(),n[t])}),n.beforeSend(t)}}).then(function(t){n.complete(t),r.length?o(r.shift()):n.completeAll(t)},function(t){return n.error(t)})};o(r.shift())}}}};function xo(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function yo(t){t.preven...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/robustio/robustio.go

    //
    // Errors are classified heuristically and retries are bounded, so the functions
    // in this package do not completely eliminate spurious errors. However, they do
    // significantly reduce the rate of failure in practice.
    //
    // If so, the error will likely wrap one of:
    // The functions in this package do not completely eliminate spurious errors,
    // but substantially reduce their rate of occurrence in practice.
    package robustio
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileInjector.java

     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
         * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileInjector.java

     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
         * @param model The model into which to merge the values defined by the profile, must not be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCachedCompileIntegrationTest.groovy

            withBuildCache().run compilationTask
            then:
            compileIsNotCached()
            remoteProjectDir.file(getCompiledFile()).exists()
    
            // Remove the project completely
            remoteProjectDir.deleteDir()
    
            when:
            // Move the dependencies around by using a new Gradle user home
            executer.requireOwnGradleUserHomeDir()
            withBuildCache().run compilationTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top