Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for transitioningTo (0.24 sec)

  1. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

                if (service.state() != NEW) {
                  servicesInBadStates.add(service);
                }
              }
              throw new IllegalArgumentException(
                  "Services started transitioning asynchronously before "
                      + "the ServiceManager was constructed: "
                      + servicesInBadStates);
            }
          } finally {
            monitor.leave();
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ServiceManager.java

                if (service.state() != NEW) {
                  servicesInBadStates.add(service);
                }
              }
              throw new IllegalArgumentException(
                  "Services started transitioning asynchronously before "
                      + "the ServiceManager was constructed: "
                      + servicesInBadStates);
            }
          } finally {
            monitor.leave();
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. src/runtime/os_windows.go

    // timer resolution to 15.6 ms, this keeps timer error under roughly 1
    // part in 4.
    const osRelaxMinNS = 60 * 1e6
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    //
    // Some versions of Windows have high resolution timer. For those
    // versions osRelax is noop.
    // For Windows versions without high resolution timer, osRelax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/types.go

    	EvictionSoftGracePeriod map[string]string
    	// Duration for which the kubelet has to wait before transitioning out of an eviction pressure condition.
    	EvictionPressureTransitionPeriod metav1.Duration
    	// Maximum allowed grace period (in seconds) to use when terminating pods in response to a soft eviction threshold being met.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Keeping up with Gradle version upgrades is low risk because the Gradle team ensures backwards compatibility between minor versions of Gradle.
    Staying up-to-date also makes transitioning to the next major version easier, since you'll get early deprecation warnings.
    
    === Java
    
    Gradle runs on the Java Virtual Machine (JVM). Java performance improvements often benefit Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager.go

    		}
    	}
    	newPodStatus.Conditions = podConditions
    
    	// ResourceClaimStatuses is not owned and not modified by kubelet.
    	newPodStatus.ResourceClaimStatuses = oldPodStatus.ResourceClaimStatuses
    
    	// Delay transitioning a pod to a terminal status unless the pod is actually terminal.
    	// The Kubelet should never transition a pod to terminal status that could have running
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    		}
    	}
    	if opts.RejectStartTimeUpdateForUnsuspendedJob {
    		// Note that we check `oldJob.Status.StartTime != nil` to allow transitioning from
    		// startTime = nil to startTime != nil for unsuspended jobs, which is a desired transition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    	// of the G's stack. Note: it's safe to access gp.waitreason here.
    	// We're only checking if this is true if we took ownership of the
    	// G with the _Gscan bit. This prevents the goroutine from transitioning,
    	// which prevents gp.waitreason from changing.
    	if traceEnabled() && readgstatus(gp)&^_Gscan == _Gwaiting && gp.waitreason.isWaitingForGC() {
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    		gp.trackingStamp = now
    	case _Grunnable:
    		// We just transitioned into runnable, so record what
    		// time that happened.
    		now := nanotime()
    		gp.trackingStamp = now
    	case _Grunning:
    		// We're transitioning into running, so turn off
    		// tracking and record how much time we spent in
    		// runnable.
    		gp.tracking = false
    		sched.timeToRun.record(gp.runnableTime)
    		gp.runnableTime = 0
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/options.go

    	fs.DurationVar(&c.EvictionPressureTransitionPeriod.Duration, "eviction-pressure-transition-period", c.EvictionPressureTransitionPeriod.Duration, "Duration for which the kubelet has to wait before transitioning out of an eviction pressure condition.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top