Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for NCases (0.14 sec)

  1. CHANGELOG/CHANGELOG-1.23.md

      - **apiserver_flowcontrol_priority_level_seat_count_watermarks**: histograms of high and low watermarks of number of seats occupied by executing requests (both regular and final-delay phases included), broken down by priority_level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		var min, max uint64
    		if unsigned {
    			min, _ = constant.Uint64Val(n.Cases[0])
    			max, _ = constant.Uint64Val(n.Cases[len(n.Cases)-1])
    		} else {
    			mn, _ := constant.Int64Val(n.Cases[0])
    			mx, _ := constant.Int64Val(n.Cases[len(n.Cases)-1])
    			min = uint64(mn)
    			max = uint64(mx)
    		}
    		// Compare idx-min with max-min, to see if we can use the jump table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    type ConfigMapNodeConfigSource struct {
    	// Namespace is the metadata.namespace of the referenced ConfigMap.
    	// This field is required in all cases.
    	Namespace string
    
    	// Name is the metadata.name of the referenced ConfigMap.
    	// This field is required in all cases.
    	Name string
    
    	// UID is the metadata.UID of the referenced ConfigMap.
    	// This field is forbidden in Node.Spec, and required in Node.Status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.22.md

    - Kubeadm:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.14.md

    Kubeadm: Expose the `kubeadm join` workflow as phases
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      cannot serve both TCP and UDP listeners on the same address, or
                      cannot mix HTTPS and generic TLS listens on the same port would
                      not consider those cases compatible, even though they are distinct.
                      \n Note that requests SHOULD match at most one Listener. For example,
                      if Listeners are defined for \"foo.example.com\" and \"*.example.com\",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.15.md

    - kubeadm now includes the ability to specify certificate encryption and decryption keys for the upload and download certificate phases as part of the new v1beta2 kubeadm config format. ([#77012](https://github.com/kubernetes/kubernetes/pull/77012), [@rosti](https://github.com/rosti))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// Namespace is the metadata.namespace of the referenced ConfigMap.
    	// This field is required in all cases.
    	Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
    
    	// Name is the metadata.name of the referenced ConfigMap.
    	// This field is required in all cases.
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    	// UID is the metadata.UID of the referenced ConfigMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    - If `kubeadm reset` finds no etcd member ID for the peer it removes during the `remove-etcd-member` phase, it continues immediately to other phases, instead of retrying the phase for up to 3 minutes before continuing. ([#118057](https://github.com/kubernetes/kubernetes/pull/118057), [@dlipovetsky](https://github.com/dlipovetsky)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    		// Ignore jumps to chains that we expect to exist even if kube-proxy
    		// didn't create them itself.
    		jumpedChains.Delete("ACCEPT", "REJECT", "DROP", "MARK", "RETURN", "DNAT", "SNAT", "MASQUERADE")
    
    		// Find cases where we have "-A FOO ... -j BAR" but no ":BAR", meaning
    		// that we are jumping to a chain that was not created.
    		missingChains := jumpedChains.Difference(createdChains)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top