Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 265 for Stopped (0.1 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service interface to indicate in which scopes it is defined in.
     * Services are lifecycled with their scope, and stopped/closed when the scope is closed.
     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/GradleUserHomeCleanupServices.java

            registration.add(UsedGradleVersions.class, usedGradleVersions);
    
            // register eagerly so stop() is triggered when services are being stopped
            GradleUserHomeCleanupService gradleUserHomeCleanupService = new GradleUserHomeCleanupService(deleter, gradleUserHomeDirProvider, cacheBuilderFactory, usedGradleVersions, buildOperationRunner, cacheConfigurations);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/SingleRequestWorkerProcessBuilder.java

     * run the method in the worker and will block until the result is received by the caller and the worker process has stopped.
     * Any exception thrown by the worker method is rethrown to the caller.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/gradients.h

    /// flows along some graph edge during backpropagation).
    /// Can be returned in 'grad_outputs' by an invocation of 'AddSymbolicGradients'
    /// (note that gradient flow through an Output can be stopped through the use of
    /// the StopGradient node).
    Output NoGradient();
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:45:03 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaPluginIntegrationTest.groovy

            '''
            expect:
            succeeds(':compileScala', '--info')
            postBuildOutputContains('Stopped 1 worker daemon')
    
            when:
            buildFile.text = buildFile.text.replace('SESSION', 'DAEMON')
    
            then:
            succeeds(':compileScala', '--info')
            postBuildOutputDoesNotContain('Stopped 1 worker daemon')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. buildscripts/heal-manual.go

    			fmt.Println("Healstatus on items ===")
    			for _, item := range status.Items {
    				if err = enc.Encode(&item); err != nil {
    					log.Fatalln(err)
    				}
    			}
    			break
    		}
    		if status.Summary == "stopped" {
    			fmt.Println("Healstatus on items ===")
    			fmt.Println("Heal failed with", status.FailureDetail)
    			break
    		}
    
    		for _, item := range status.Items {
    			if err = enc.Encode(&item); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 09:47:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/MultiRequestWorkerProcessBuilder.java

     * <p>The worker process executes the request using an instance of the implementation type specified as a parameter to {@link WorkerProcessFactory#multiRequestWorker(Class)}.</p>
     *
     * <p>The worker process must be explicitly started and stopped using the methods on {@link WorkerControl}.</p>
     */
    public interface MultiRequestWorkerProcessBuilder<IN, OUT> extends WorkerProcessSettings {
        /**
         * Creates a worker.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    			return false
    		}
    		return f.(func() bool)()
    	}
    	return c
    }
    
    // Runs the controller and returns an error explaining why running was stopped.
    // Reconciliation ends as soon as the context completes. If there are events
    // waiting to be processed at that itme, they will be dropped.
    func (c *controller[T]) Run(ctx context.Context) error {
    	klog.Infof("starting %s", c.options.Name)
    	defer klog.Infof("stopping %s", c.options.Name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/BuildProcessState.java

        }
    
        public ServiceRegistry getServices() {
            return services;
        }
    
        @Override
        public void close() {
            // Force the user home services to be stopped first, because the dependencies between the user home services and the global services are not preserved currently
            CompositeStoppable.stoppable(services.get(GradleUserHomeScopeServiceRegistry.class), services).stop();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

                instant.actionCompleted
            }
    
            when:
            async {
                worker.runLater(action)
                worker.stop()
                instant.stopped
            }
    
            then:
            instant.stopped > instant.actionCompleted
        }
    
        def "can use operation to test that a method blocks until action is complete"() {
            Worker worker = new Worker(executor)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top