Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,205 for okdown (0.11 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	Metrics []MetricSpec `json:"metrics,omitempty" protobuf:"bytes,4,rep,name=metrics"`
    
    	// behavior configures the scaling behavior of the target
    	// in both Up and Down directions (scaleUp and scaleDown fields respectively).
    	// If not set, the default HPAScalingRules for scale up and scale down are used.
    	// +optional
    	Behavior *HorizontalPodAutoscalerBehavior `json:"behavior,omitempty" protobuf:"bytes,5,opt,name=behavior"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/metrics.go

    	OrphanedRuntimePodTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           OrphanedRuntimePodTotalKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

                    return;
                } else if (remaining.cardinality() == 1) {
                    // If we're down to one candidate and the attribute has a known precedence,
                    // we can stop now and choose this candidate as the match.
                    return;
                }
            }
            // If the attribute does not have a known precedence, then we cannot stop
            // until we've disambiguated all of the attributes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/etcd/etcd.go

    		return lastError
    	}
    	return nil
    }
    
    // CheckClusterHealth returns nil for status Up or error for status Down
    func (c *Client) CheckClusterHealth() error {
    	_, err := c.getClusterStatus()
    	return err
    }
    
    // getClusterStatus returns nil for status Up (along with endpoint status response map) or error for status Down
    func (c *Client) getClusterStatus() (map[string]*clientv3.StatusResponse, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"containerResource": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  6. tools/docker-builder/main.go

    		}
    
    		// Check targets are valid
    		tgt := sets.New(a.Targets...)
    		known := sets.New[string]()
    		for _, img := range plan.Images {
    			known.Insert(img.Name)
    		}
    		if unknown := sets.SortedList(tgt.Difference(known)); len(unknown) > 0 {
    			return a, fmt.Errorf("unknown targets: %v", unknown)
    		}
    
    		// Filter down to requested targets
    		// This is not arch specific, so we can just let it run for each arch.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"containerResource": "containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v2beta1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// will be averaged together before being compared to the target value.
    	PodsMetricSourceType MetricSourceType = "Pods"
    	// ResourceMetricSourceType is a resource metric known to Kubernetes, as
    	// specified in requests and limits, describing each pod in the current
    	// scale target (e.g. CPU or memory).  Such metrics are built in to
    	// Kubernetes, and have special scaling options on top of those available
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    }  // namespace detail
    
    // An analysis that runs on a function and infers the control predecessors and
    // successors for each op, based on side effects on known and unknown resources.
    // Side-effecting ops on unknown resources are conservatively treated as
    // interfering with all known resource op accesses. It distinguishes accesses
    // based on whether they are read-only, and read-only ops do not interfere with
    // each other.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top