Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 394 for termination (0.32 sec)

  1. src/runtime/mgcwork.go

    //	gcw := &getg().m.p.ptr().gcw
    //	.. call gcw.put() to produce and gcw.tryGet() to consume ..
    //
    // It's important that any use of gcWork during the mark phase prevent
    // the garbage collector from transitioning to mark termination since
    // gcWork may locally hold GC work buffers. This can be done by
    // disabling preemption (systemstack or acquirem).
    type gcWork struct {
    	// wbuf1 and wbuf2 are the primary and secondary work buffers.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    	for target := len(replicas) - 1; target >= updateMin; target-- {
    
    		// delete the Pod if it is not already terminating and does not match the update revision.
    		if getPodRevision(replicas[target]) != updateRevision.Name && !isTerminating(replicas[target]) {
    			logger.V(2).Info("Pod of StatefulSet is terminating for update",
    				"statefulSet", klog.KObj(set), "pod", klog.KObj(replicas[target]))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/runtime/mbarrier.go

    // are stored in globals. Many garbage collectors ignore writes to
    // globals and instead pick up global -> heap pointers during
    // termination. This increases pause time, so we instead rely on write
    // barriers for writes to globals so that we don't have to rescan
    // global during mark termination.
    //
    //
    // Publication ordering:
    //
    // The write barrier is *pre-publication*, meaning that the write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

    // All other ops not in this list should use XlaOpKernel.
    const llvm::DenseSet<mlir::TypeID>& MlirAlwaysOps() {
      // The static variable is a pointer in order to avoid destruction upon thread
      // termination.
      static const llvm::DenseSet<mlir::TypeID>* ops = new llvm::DenseSet<
          mlir::TypeID>{
          // Ops that should always use the MLIR legalization.
          TypeID::get<TF::FusedBatchNormV3Op>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/claiminfo.go

    }
    
    // hasPodReference checks if there is at least one claim
    // that is referenced by the pod with the given UID
    // This function is used indirectly by the status manager
    // to check if pod can enter termination status
    func (cache *claimInfoCache) hasPodReference(UID types.UID) bool {
    	for _, claimInfo := range cache.claimInfo {
    		if claimInfo.hasPodReference(UID) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/internal/trace/oldtrace.go

    	addBuiltin(sSelect, "select")
    	addBuiltin(sEmpty, "")
    	addBuiltin(sMarkAssistWait, "GC mark assist wait for work")
    	addBuiltin(sSTWUnknown, "")
    	addBuiltin(sSTWGCMarkTermination, "GC mark termination")
    	addBuiltin(sSTWGCSweepTermination, "GC sweep termination")
    	addBuiltin(sSTWWriteHeapDump, "write heap dump")
    	addBuiltin(sSTWGoroutineProfile, "goroutine profile")
    	addBuiltin(sSTWGoroutineProfileCleanup, "goroutine profile cleanup")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/defaults_test.go

    		".Spec.Containers[0].StartupProbe.SuccessThreshold":              "1",
    		".Spec.Containers[0].StartupProbe.TimeoutSeconds":                "1",
    		".Spec.Containers[0].TerminationMessagePath":                     `"/dev/termination-log"`,
    		".Spec.Containers[0].TerminationMessagePolicy":                   `"File"`,
    		".Spec.Containers[0].LivenessProbe.ProbeHandler.GRPC.Service":    `""`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/runtime/mstats.go

    // counters.
    //
    // gcMarkPhase indicates that we're in the mark phase and that certain counter
    // values should be used.
    func (s *cpuStats) accumulate(now int64, gcMarkPhase bool) {
    	// N.B. Mark termination and sweep termination pauses are
    	// accumulated in work.cpuStats at the end of their respective pauses.
    	var (
    		markAssistCpu     int64
    		markDedicatedCpu  int64
    		markFractionalCpu int64
    		markIdleCpu       int64
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/conta...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. src/compress/bzip2/huffman.go

    		if len(codes) < 2 {
    			return 0, StructuralError("empty Huffman tree")
    		}
    
    		// In this case the recursion doesn't always reduce the length
    		// of codes so we need to ensure termination via another
    		// mechanism.
    		if level == 31 {
    			// Since len(codes) >= 2 the only way that the values
    			// can match at all 32 bits is if they are equal, which
    			// is invalid. This ensures that we never enter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top