Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 665 for termination (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    			optionsFn: func() *ServerRunOptions {
    				o := NewServerRunOptions()
    				o.ShutdownWatchTerminationGracePeriod = -time.Second
    				return o
    			},
    			errShouldContain: "shutdown-watch-termination-grace-period, if provided, can not be a negative value",
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			options := test.optionsFn()
    			errsGot := options.Validate()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Resources.java

        return asCharSource(url, charset).readLines(callback);
      }
    
      /**
       * Reads all of the lines from a URL. The lines do not include line-termination characters, but do
       * include other leading and trailing whitespace.
       *
       * <p>This method returns a mutable {@code List}. For an {@code ImmutableList}, use {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    		return nil
    	}
    
    	if a.GetKind().GroupKind() == v1.SchemeGroupVersion.WithKind("Namespace").GroupKind() {
    		// if a namespace is deleted, we want to prevent all further creates into it
    		// while it is undergoing termination.  to reduce incidences where the cache
    		// is slow to update, we add the namespace into a force live lookup list to ensure
    		// we are not looking at stale state.
    		if a.GetOperation() == admission.Delete {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/Resources.java

        return asCharSource(url, charset).readLines(callback);
      }
    
      /**
       * Reads all of the lines from a URL. The lines do not include line-termination characters, but do
       * include other leading and trailing whitespace.
       *
       * <p>This method returns a mutable {@code List}. For an {@code ImmutableList}, use {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. 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)
Back to top