Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 190 for finishes (0.14 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

            if (problems.isEmpty()) {
                getLogger().info("Plugin validation finished without warnings.");
            } else {
                if (getFailOnWarning().get() || problems.stream().anyMatch(problem -> problem.getDefinition().getSeverity() == ERROR)) {
                    if (getIgnoreFailures().get()) {
                        getLogger().warn("Plugin validation finished with errors. {} {}",
                            annotateTaskPropertiesDoc(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContextBuilder.java

         */
        ModelTransformerContext initialize(ModelBuilderRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
         *
         * @return the immutable transformerContext
         */
        ModelTransformerContext build();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      optional JobTemplateSpec jobTemplate = 5;
    
      // The number of successful finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
      // The number of failed finished jobs to retain.
      // This is a pointer to distinguish between explicit zero and not specified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiInvocationValidationIntegrationTest.groovy

            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << ""
            buildFile << """
                plugins.apply(my.MyPlugin)
                gradle.buildFinished {
                    println("build finished")
                }
            """
    
            when:
            executer.withArguments(ENABLE_CLI)
            fetchModelFails()
    
            then:
            fixture.assertStateStoredAndDiscarded {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

        def "intermediate model is cached and reused for nested concurrent requests"() {
            // Sleep to ensure concurrent requests for the same model catch up before the first one is finished
            withSomeToolingModelBuilderPluginInBuildSrc("""
                Thread.sleep(3000)
            """)
    
            settingsFile << """
                rootProject.name = "root"
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheFactory.java

    import java.util.Map;
    import java.util.function.Consumer;
    
    @ServiceScope(Scope.Global.class)
    public interface CacheFactory {
        /**
         * Opens a cache with the given options. The caller must close the cache when finished with it.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/CancellationCrossVersionSpec.groovy

                collectOutputs(build)
                build.run(resultHandler)
                sync.waitForAllPendingCalls(resultHandler)
                cancel.cancel()
                sync.releaseAll()
                resultHandler.finished()
            }
    
            then:
            configureWasCancelled(resultHandler, "Could not run phased build action using")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphTest.groovy

            then:
            def e = thrown(IllegalStateException)
            e.message == "No work graph available for this thread."
        }
    
        def "cannot schedule tasks when after graph has finished execution"() {
            when:
            graph.withNewWorkGraph { 12 }
            graph.locateTask(taskIdentifier(DefaultBuildIdentifier.ROOT, ":task")).queueForExecution()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/trace/goroutinegen.go

    }
    
    func (g *goroutineGenerator) Finish(ctx *traceContext) {
    	ctx.SetResourceType("G")
    
    	// Finish off global ranges.
    	g.globalRangeGenerator.Finish(ctx)
    
    	// Finish off all the goroutine slices.
    	for id, gs := range g.gStates {
    		gs.finish(ctx)
    
    		// Tell the emitter about the goroutines we want to render.
    		ctx.Resource(uint64(id), gs.name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

        SnapshotHierarchy updateVfsOnBuildStarted(SnapshotHierarchy root, WatchMode watchMode, List<File> unsupportedFileSystems);
    
        /**
         * Remove everything from the root which can't be kept after the current build finished.
         *
         * @see FileWatcherRegistry#updateVfsBeforeBuildFinished(SnapshotHierarchy, int, List)
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top