Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 385 for Stopping (0.17 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultDaemonConnection.java

        private final StdinQueue stdinQueue;
        private final DisconnectQueue disconnectQueue;
        private final CancelQueue cancelQueue;
        private final ReceiveQueue receiveQueue;
        private volatile boolean stopping;
    
        public DefaultDaemonConnection(final SynchronizedDispatchConnection<Message> connection, ExecutorFactory executorFactory) {
            this.connection = connection;
            stdinQueue = new StdinQueue(executorFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableActionSet.java

     * limitations under the License.
     */
    package org.gradle.internal;
    
    import org.gradle.api.Action;
    
    /**
     * A mutable composite {@link Action}. Actions are executed in the order added, stopping on the first failure.
     *
     * This type is not thread-safe.
     *
     * Consider using {@link org.gradle.internal.ImmutableActionSet} instead of this.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	// stop is called when a worker encounters a fatal error.
    	var fuzzErr error
    	stopping := false
    	stop := func(err error) {
    		if shouldPrintDebugInfo() {
    			_, file, line, ok := runtime.Caller(1)
    			if ok {
    				c.debugLogf("stop called at %s:%d. stopping: %t", file, line, stopping)
    			} else {
    				c.debugLogf("stop called at unknown. stopping: %t", stopping)
    			}
    		}
    
    		if err == fuzzCtx.Err() || isInterruptError(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/packaging/common/scripts/prerm

        ;;
    
        *)
            echo "pre remove script called with unknown argument \`$1'" >&2
            exit 1
        ;;
    esac
    
    # Stops the service
    if [ "$STOP_REQUIRED" = "true" ]; then
        echo -n "Stopping fess service..."
        if command -v systemctl >/dev/null; then
            systemctl --no-reload stop fess.service > /dev/null 2>&1 || true
    
        elif [ -x /etc/init.d/fess ]; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses.go

    					return layout, err
    				}
    			}
    		}
    
    		var stopping bool
    		var singleNode bool
    		var eps []string
    
    		for i := 0; ; i++ {
    			for _, node := range endpointsList {
    				if node.nodeName == "" {
    					singleNode = true
    				}
    
    				if len(node.disks) <= i {
    					stopping = true
    					continue
    				}
    				if stopping {
    					return layout, errors.New("number of disks per node does not match")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/plugin/plugin.go

    func NewRegistrationHandler(kubeClient kubernetes.Interface, getNode func() (*v1.Node, error)) *RegistrationHandler {
    	handler := &RegistrationHandler{}
    
    	// If kubelet ever gets an API for stopping registration handlers, then
    	// that would need to be hooked up with stopping the controller.
    	handler.controller = startNodeResourcesController(context.TODO(), kubeClient, getNode)
    
    	return handler
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

        public static final String DAEMON_WILL_STOP_MESSAGE = "Daemon will be stopped at the end of the build ";
        public static final String DAEMON_STOPPING_IMMEDIATELY_MESSAGE = "Daemon is stopping immediately ";
        private static final Logger LOGGER = Logging.getLogger(DaemonStateCoordinator.class);
    
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryUpdaterTest.groovy

            when:
            updater.onStartActivity()
    
            then:
            noExceptionThrown()
        }
    
        def "ignores empty cache on stopping"() {
            given:
            updater.onStart(address)
            registry.remove(address) >> { throw new EmptyRegistryException("") }
    
            when:
            updater.stop()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

            }
        })
    
        def cleanup() {
            communicator.stop()
        }
    
        def "knows port"() {
            expect:
            communicator.getPort() != -1
        }
    
        def "does not know port after stopping"() {
            when:
            communicator.stop()
    
            then:
            communicator.getPort() == -1
        }
    
        def "can receive lock id and type"() {
            FileLockPacketPayload receivedPayload
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/runtime/metrics/doc.go

    		Distribution of the time goroutines have spent in the scheduler
    		in a runnable state before actually running. Bucket counts
    		increase monotonically.
    
    	/sched/pauses/stopping/gc:seconds
    		Distribution of individual GC-related stop-the-world stopping
    		latencies. This is the time it takes from deciding to stop the
    		world until all Ps are stopped. This is a subset of the total
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top