Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,013 for _Gwaiting (0.15 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstate.go

    package v1
    
    // ContainerStateApplyConfiguration represents an declarative configuration of the ContainerState type for use
    // with apply.
    type ContainerStateApplyConfiguration struct {
    	Waiting    *ContainerStateWaitingApplyConfiguration    `json:"waiting,omitempty"`
    	Running    *ContainerStateRunningApplyConfiguration    `json:"running,omitempty"`
    	Terminated *ContainerStateTerminatedApplyConfiguration `json:"terminated,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

            when:
            def waiting = server.expectConcurrentAndBlock("a-waiting", "b-waiting")
            def done = server.expectAndBlock("b-done")
            def build = executer.withArguments("--parallel").withTasks("run").start()
    
            waiting.waitForAllPendingCalls()
            waiting.release("b-waiting")
            done.waitForAllPendingCalls()
            done.releaseAll()
            waiting.releaseAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/par/work.go

    // and all the runners are waiting for work.
    // (Then all the runners return.)
    func (w *Work[T]) runner() {
    	for {
    		// Wait for something to do.
    		w.mu.Lock()
    		for len(w.todo) == 0 {
    			w.waiting++
    			if w.waiting == w.running {
    				// All done.
    				w.wait.Broadcast()
    				w.mu.Unlock()
    				return
    			}
    			w.wait.Wait()
    			w.waiting--
    		}
    
    		// Pick something to do at random,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/waiting_pods_map.go

    		plugin, waitTime := k, v
    		wp.pendingPlugins[plugin] = time.AfterFunc(waitTime, func() {
    			msg := fmt.Sprintf("rejected due to timeout after waiting %v at plugin %v",
    				waitTime, plugin)
    			wp.Reject(plugin, msg)
    		})
    	}
    
    	return wp
    }
    
    // GetPod returns a reference to the waiting pod.
    func (w *waitingPod) GetPod() *v1.Pod {
    	return w.pod
    }
    
    // GetPendingPlugins returns a list of pending permit plugin's name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/clientinput/StdInStream.java

                    // Closed
                    return -1;
                }
            }
        }
    
        private void waitForContent() {
            if (readPos == buffer.length && !waiting && !closed) {
                eventDispatch.onOutput(new ReadStdInEvent());
                waiting = true;
            }
            while (readPos == buffer.length && !closed) {
                try {
                    lock.wait();
                } catch (InterruptedException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination_test.go

    func (fakeServerShutdownSignal) ShuttingDown() <-chan struct{} { return nil }
    
    type fakeRequestWaitGroup struct {
    	waiting           bool
    	invoked, inflight int
    }
    
    func (f *fakeRequestWaitGroup) Add(delta int) error {
    	f.invoked++
    	if f.waiting {
    		return fmt.Errorf("waitgroup is in waiting mode")
    	}
    	f.inflight += delta
    	return nil
    }
    func (f *fakeRequestWaitGroup) Done() { f.inflight-- }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. operator/pkg/util/progress/progress.go

    // progress into a single line. For example "Waiting for x, y, z". Once a component completes, we want
    // a new line created so the information is not lost. To do this, we spin up a new bar with the remaining components
    // on a new line, and create a new bar. For example, this becomes "x succeeded", "waiting for y, z".
    func (p *Log) reportProgress(component string) func() {
    	return func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

        "podIPs": [
          {
            "ip": "ipValue"
          }
        ],
        "startTime": "2007-01-01T01:01:01Z",
        "initContainerStatuses": [
          {
            "name": "nameValue",
            "state": {
              "waiting": {
                "reason": "reasonValue",
                "message": "messageValue"
              },
              "running": {
                "startedAt": "2001-01-01T01:01:01Z"
              },
              "terminated": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/work/DefaultAsyncWorkTracker.java

        @Override
        public void registerWork(BuildOperationRef operation, AsyncWorkCompletion workCompletion) {
            lock.lock();
            try {
                if (waiting.contains(operation)) {
                    throw new IllegalStateException("Another thread is currently waiting on the completion of work for the provided operation");
                }
                items.put(operation, workCompletion);
            } finally {
                lock.unlock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. src/sync/cond.go

    	runtime_notifyListWait(&c.notify, t)
    	c.L.Lock()
    }
    
    // Signal wakes one goroutine waiting on c, if there is any.
    //
    // It is allowed but not required for the caller to hold c.L
    // during the call.
    //
    // Signal() does not affect goroutine scheduling priority; if other goroutines
    // are attempting to lock c.L, they may be awoken before a "waiting" goroutine.
    func (c *Cond) Signal() {
    	c.checker.check()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top