Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for registered_ (0.27 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - In a scheduler with `Permit` plugins, when a Pod is rejected during `WaitOnPermit`, the scheduler records the plugin.
      The scheduler will use the record to honor cluster events and queueing `hints registered` for the plugin, to inform whether to retry the pod. ([#119785](https://github.com/kubernetes/kubernetes/pull/119785), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    	if err != nil {
    		logger.Error(err, "metrics are not registered?")
    		return -1
    	}
    	return int(numRulesFloat)
    }
    
    func countRulesFromLastSyncMetric(logger klog.Logger, tableName utiliptables.Table) int {
    	numRulesFloat, err := testutil.GetGaugeMetricValue(metrics.IPTablesRulesLastSync.WithLabelValues(string(tableName)))
    	if err != nil {
    		logger.Error(err, "metrics are not registered?")
    		return -1
    	}
    	return int(numRulesFloat)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Etcd image `v3.5.12` has been built. ([#123069](https://github.com/kubernetes/kubernetes/pull/123069), [@bzsuni](https://github.com/bzsuni))
    - Fixed a bug in scheduler requeueing where registered wildcard cluster event sources didn't work. ([#123117](https://github.com/kubernetes/kubernetes/pull/123117), [@kerthcet](https://github.com/kerthcet))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"driver":               "driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
    	"readOnly":             "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    message CSIVolumeSource {
      // driver is the name of the CSI driver that handles this volume.
      // Consult with your admin for the correct name as registered in the cluster.
      optional string driver = 1;
    
      // readOnly specifies a read-only configuration for the volume.
      // Defaults to false (read/write).
      // +optional
      optional bool readOnly = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    type CSIVolumeSource struct {
    	// driver is the name of the CSI driver that handles this volume.
    	// Consult with your admin for the correct name as registered in the cluster.
    	Driver string `json:"driver" protobuf:"bytes,1,opt,name=driver"`
    
    	// readOnly specifies a read-only configuration for the volume.
    	// Defaults to false (read/write).
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - During device plugin allocation, resources requested by the pod can only be allocated if the device plugin has registered itself to kubelet AND healthy devices are present on the node to be allocated. If these conditions are not sattsfied, the pod would fail with `UnexpectedAdmissionError` error. ([#116376](https://github.com/kubernetes/kubernetes/pull/116376), [@...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  8. pkg/apis/core/types.go

    type CSIVolumeSource struct {
    	// Driver is the name of the CSI driver that handles this volume.
    	// Consult with your admin for the correct name as registered in the cluster.
    	// Required.
    	Driver string
    
    	// Specifies a read-only configuration for the volume.
    	// Defaults to false (read/write).
    	// +optional
    	ReadOnly *bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    		f.n = sum
    		return true
    	}
    	return false
    }
    
    const http2frameHeaderLen = 9
    
    var http2padZeros = make([]byte, 255) // zeros for padding
    
    // A FrameType is a registered frame type as defined in
    // https://httpwg.org/specs/rfc7540.html#rfc.section.11.2
    type http2FrameType uint8
    
    const (
    	http2FrameData         http2FrameType = 0x0
    	http2FrameHeaders      http2FrameType = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    - During device plugin allocation, resources requested by the pod can only be allocated if the device plugin has registered itself to kubelet AND healthy devices are present on the node to be allocated. If these conditions are not sattsfied, the pod would fail with `UnexpectedAdmissionError` error. ([#117738](https://github.com/kubernetes/kubernetes/pull/117738), [@...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top