Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 495 for STOPPED (0.13 sec)

  1. pkg/kubelet/cm/devicemanager/types.go

    }
    
    // TODO: evaluate whether we need this error definition.
    const (
    	errEndpointStopped = "endpoint %v has been stopped"
    )
    
    // endpointStopGracePeriod indicates the grace period after an endpoint is stopped
    // because its device plugin fails. DeviceManager keeps the stopped endpoint in its
    // cache during this grace period to cover the time gap for the capacity change to
    // take effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_download_too_many_redirects.txt

    env GO111MODULE=on
    env GOPROXYBASE=$GOPROXY
    env GOPROXY=$GOPROXYBASE/redirect/11
    env GOSUMDB=off
    
    ! go mod download rsc.io/quote@v1.2.0
    stderr 'stopped after 10 redirects'
    
    env GOPROXY=$GOPROXYBASE/redirect/9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 245 bytes
    - Viewed (0)
  3. pkg/queue/delay.go

    				return
    			}
    		}
    	}
    }
    
    // work takes a channel that signals to stop, and returns a channel that signals the worker has fully stopped
    func (d *delayQueue) work(stop <-chan struct{}) (stopped chan struct{}) {
    	stopped = make(chan struct{})
    	go func() {
    		defer close(stopped)
    		for {
    			select {
    			case t := <-d.execute:
    				if err := t.do(); err != nil {
    					if t.retries < maxTaskRetry {
    						t.retries++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestWorkerTest.groovy

            when:
            async {
                worker.execute(workerContext)
                instant.completed
            }
    
            then:
            instant.completed > instant.stopped
            System.properties['org.gradle.test.worker'] == '<worker-id>'
    
            and:
            1 * factory.create(_, _, _) >> processor
            1 * connection.addOutgoing(TestResultProcessor) >> resultProcessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/DefaultAsyncConsumerActionExecutorTest.groovy

            }
            1 * handler.onFailure(failure)
        }
    
        def "cannot use connection after it has stopped"() {
            when:
            connection.stop()
            connection.run(action, handler)
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Cannot use [executer] as it has been stopped.'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_bsd.go

    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    func (w WaitStatus) Signal() Signal {
    	sig := Signal(w & mask)
    	if sig == stopped || sig == 0 {
    		return -1
    	}
    	return sig
    }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonLogFileStateProbe.groovy

    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Idle
    import static org.gradle.launcher.daemon.server.api.DaemonStateControl.State.Stopped
    
    class DaemonLogFileStateProbe implements DaemonStateProbe {
        private final DaemonContext context
        private final DaemonLogFile log
        private final String startBuildMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

            when:
            communicator.pingOwner(6666, 166, "lock")
    
            then:
            noExceptionThrown()
        }
    
        def "can be stopped"() {
            expect:
            communicator.stop()
        }
    
        def "can be stopped during receive"() {
            start {
                try {
                    communicator.receive()
                } catch (GracefullyStoppedException e) {}
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_monitor.go

    	// Stop any running monitors.
    	qm.monitorLock.Lock()
    	defer qm.monitorLock.Unlock()
    	monitors := qm.monitors
    	stopped := 0
    	for _, monitor := range monitors {
    		if monitor.stopCh != nil {
    			stopped++
    			close(monitor.stopCh)
    		}
    	}
    	logger.Info("QuotaMonitor stopped monitors", "stopped", stopped, "total", len(monitors))
    }
    
    func (qm *QuotaMonitor) runProcessResourceChanges(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/syscall/syscall_wasip1.go

    		return "terminated"
    	case SIGCHLD:
    		return "child exited"
    	case SIGCONT:
    		return "continued"
    	case SIGSTOP:
    		return "stopped (signal)"
    	case SIGTSTP:
    		return "stopped"
    	case SIGTTIN:
    		return "stopped (tty input)"
    	case SIGTTOU:
    		return "stopped (tty output)"
    	case SIGURG:
    		return "urgent I/O condition"
    	case SIGXCPU:
    		return "CPU time limit exceeded"
    	case SIGXFSZ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top