Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 143 for place (0.34 sec)

  1. pkg/scheduler/framework/types.go

    func (pi *PodInfo) Update(pod *v1.Pod) error {
    	if pod != nil && pi.Pod != nil && pi.Pod.UID == pod.UID {
    		// PodInfo includes immutable information, and so it is safe to update the pod in place if it is
    		// the exact same pod
    		pi.Pod = pod
    		return nil
    	}
    	var preferredAffinityTerms []v1.WeightedPodAffinityTerm
    	var preferredAntiAffinityTerms []v1.WeightedPodAffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. CREDITS

        d) Convey the object code by offering access from a designated
        place (gratis or for a charge), and offer equivalent access to the
        Corresponding Source in the same way through the same place at no
        further charge.  You need not require recipients to copy the
        Corresponding Source along with the object code.  If the place to
        copy the object code is a network server, the Corresponding Source
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	SELinuxMountReadWriteOncePod featuregate.Feature = "SELinuxMountReadWriteOncePod"
    
    	// owner: @vinaykul
    	// kep: http://kep.k8s.io/1287
    	// alpha: v1.27
    	//
    	// Enables In-Place Pod Vertical Scaling
    	InPlacePodVerticalScaling featuregate.Feature = "InPlacePodVerticalScaling"
    
    	// owner: @Sh4d1,@RyanAoh,@rikatz
    	// kep: http://kep.k8s.io/1860
    	// alpha: v1.29
    	// beta: v1.30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      if [[ -n "${FLUENTD_GCP_MEMORY_REQUEST:-}" ]]; then
        any_overrides=true
      fi
      if ! $any_overrides; then
        # Nothing to do here.
        exit
      fi
    
      # Wait until ScalingPolicy CRD is in place.
      until kubectl get scalingpolicies.scalingpolicy.kope.io
      do
        sleep 10
      done
    
      # Single-shot, not managed by addon manager. Can be later modified or removed
      # at will.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    // that the remnant of the running pod is terminated and allow garbage collection to proceed. We do
    // not update the status of the pod because with the source of configuration removed, we have no
    // place to send that status.
    func (kl *Kubelet) SyncTerminatingRuntimePod(_ context.Context, runningPod *kubecontainer.Pod) error {
    	// TODO(#113606): connect this with the incoming context parameter, which comes from the pod worker.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			// and propagating them down may overload the whole system.
    			//
    			// TODO: If at some point we decide the performance and scalability
    			// footprint is acceptable, this is the place to hook them in.
    			// However, we then need to check if this was called as a result
    			// of a bookmark event or regular Add/Update/Delete operation by
    			// checking if resourceVersion here has changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } else if (obj instanceof Failure) {
          throw new ExecutionException(((Failure) obj).exception);
        } else if (obj == NULL) {
          /*
           * It's safe to return null because we would only have stored it in the first place if it were
           * a valid value for V.
           */
          return uncheckedNull();
        } else {
          @SuppressWarnings("unchecked") // this is the only other option
          V asV = (V) obj;
          return asV;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    	"cmd/compile/internal/types"
    	"cmd/internal/notsha256"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    
    	rtabi "internal/abi"
    )
    
    // OpVarDef is an annotation for the liveness analysis, marking a place
    // where a complete initialization (definition) of a variable begins.
    // Since the liveness analysis can see initialization of single-word
    // variables quite easy, OpVarDef is only needed for multi-word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/net/netip/netip.go

    		}
    
    		// If followed by dot, might be in trailing IPv4.
    		if off < len(s) && s[off] == '.' {
    			if ellipsis < 0 && i != 12 {
    				// Not the right place.
    				return Addr{}, parseAddrError{in: in, msg: "embedded IPv4 address must replace the final 2 fields of the address", at: s}
    			}
    			if i+4 > 16 {
    				// Not enough room.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } else if (obj instanceof Failure) {
          throw new ExecutionException(((Failure) obj).exception);
        } else if (obj == NULL) {
          /*
           * It's safe to return null because we would only have stored it in the first place if it were
           * a valid value for V.
           */
          return uncheckedNull();
        } else {
          @SuppressWarnings("unchecked") // this is the only other option
          V asV = (V) obj;
          return asV;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top