Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 393 for immediatetly (0.28 sec)

  1. src/os/exec.go

    	// other concurrent references may delay actually closing the handle
    	// because they hold a transient reference.
    	//
    	// Regardless, we want new method calls to immediately treat the handle
    	// as unavailable after Release or Wait to avoid extending this delay.
    	// This is achieved by setting either processStatus flag when the
    	// Process' persistent reference is dropped. The only difference in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/runtime/mgcwork.go

    	bytesMarked uint64
    
    	// Heap scan work performed on this gcWork. This is aggregated into
    	// gcController by dispose and may also be flushed by callers.
    	// Other types of scan work are flushed immediately.
    	heapScanWork int64
    
    	// flushedWork indicates that a non-empty work buffer was
    	// flushed to the global work list since the last gcMarkDone
    	// termination check. Specifically, this indicates that this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    			}
    		}
    	})
    }
    
    // visitAll provides a utility method for visiting all the phases in the workflow
    // in the execution order and executing a func on each phase.
    // Nested phase are visited immediately after their parent phase.
    func (e *Runner) visitAll(fn func(*phaseRunner) error) error {
    	for _, currentRunner := range e.phaseRunners {
    		if err := fn(currentRunner); err != nil {
    			return err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    }
    
    // ExponentialBackoffWithContext repeats a condition check with exponential backoff.
    // It immediately returns an error if the condition returns an error, the context is cancelled
    // or hits the deadline, or if the maximum attempts defined in backoff is exceeded (ErrWaitTimeout).
    // If an error is returned by the condition the backoff stops immediately. The condition will
    // never be invoked more than backoff.Steps times.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

      /**
       * Add a shutdown hook to wait for thread completion in the given {@link ExecutorService service}.
       * This is useful if the given service uses daemon threads, and we want to keep the JVM from
       * exiting immediately on shutdown, instead giving these daemon threads a chance to terminate
       * normally.
       *
       * @param service ExecutorService which uses daemon threads
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/plugin/noderesources.go

    	// When kubelet starts, we have two choices:
    	// - Sync immediately, which in practice will delete all ResourceSlices
    	//   because no plugin has registered yet. We could do a DeleteCollection
    	//   to speed this up.
    	// - Wait a bit, then sync. If all plugins have re-registered in the meantime,
    	//   we might not need to change any ResourceSlice.
    	//
    	// For now syncing starts immediately, with no DeleteCollection. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta.go

    		// loading request, concurrency=1. Once that request is done, concurrency is enabled.
    		// However, the XDS stream is long lived, so the first request would block all others. As a
    		// result, we should exit the first request immediately; clients will retry.
    		firstRequest.Store(false)
    		return status.Error(codes.Unavailable, "server warmup not complete; try again")
    	}
    	// Check if server is ready to accept clients and process new requests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/printer.go

    	// expressions and types
    	case *BadExpr:
    		p.print(_Name, "<bad expr>")
    
    	case *Name:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *BasicLit:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *FuncLit:
    		p.print(n.Type, blank)
    		if n.Body != nil {
    			if p.form == ShortForm {
    				p.print(_Lbrace)
    				if len(n.Body.List) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top