Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for repeated (0.18 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated ContainerImage images = 8;
    
      // List of attachable volumes in use (mounted) by the node.
      // +optional
      // +listType=atomic
      repeated string volumesInUse = 9;
    
      // List of volumes that are attached to the node.
      // +optional
      // +listType=atomic
      repeated AttachedVolume volumesAttached = 10;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.md

    - QueueingHint implementation for NodeAffinity is reverted because we found potential scenarios where events that make Pods schedulable could be missed. ([#122327](https://github.com/kubernetes/kubernetes/pull/122327), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. doc/go_spec.html

    If the divisor is zero at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
    If the dividend is non-negative and the divisor is a constant power of 2,
    the division may be replaced by a right shift, and computing the remainder may
    be replaced by a bitwise AND operation:
    </p>
    
    <pre>
     x     x / 4     x % 4     x &gt;&gt; 2     x &amp; 3
     11      2         3         2          3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      TensorType ty =
          tensorflow::GetTypeFromTFTensorShape({size}, builder->getIntegerType(64));
      return DenseIntElementsAttr::get(ty, vals);
    }
    
    // Returns a 1-d i64 elements attribute populated with `val` repeated `size`
    // times.
    static DenseIntElementsAttr GetI64ElementsAttrForValue(int size, int64_t val,
                                                           Builder *builder) {
      TensorType ty =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	SystemUUID string
    	// Boot ID reported by the node.
    	BootID string
    	// Kernel Version reported by the node.
    	KernelVersion string
    	// OS Image reported by the node.
    	OSImage string
    	// ContainerRuntime Version reported by the node.
    	ContainerRuntimeVersion string
    	// Kubelet Version reported by the node.
    	KubeletVersion string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"bootID":                  "Boot ID reported by the node.",
    	"kernelVersion":           "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
    	"osImage":                 "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
    	"containerRuntimeVersion": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Updated distroless iptables to use released image `registry.k8s.io/build-image/distroless-iptables:v0.2.2`
      - Updated setcap to use released image `registry.k8s.io/build-image/setcap:bullseye-v1.4.2` ([#116509](https://github.com/kubernetes/kubernetes/pull/116509), [@cpanato](https://github.com/cpanato)) [SIG Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// released volumes must be recycled before becoming available again
    	// this phase is used by the persistent volume claim binder to signal to another process to reclaim the resource
    	VolumeReleased PersistentVolumePhase = "Released"
    	// used for PersistentVolumes that failed to be correctly recycled or deleted after being released from a claim
    	VolumeFailed PersistentVolumePhase = "Failed"
    )
    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. pkg/apis/core/validation/validation.go

    			}
    		}
    
    	// something has been released (downgraded)
    	case len(oldService.Spec.ClusterIPs) > len(service.Spec.ClusterIPs):
    		// primary ClusterIP has been released
    		if len(service.Spec.ClusterIPs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - The scheduling queue didn't notice any extenders' failures, it could miss some cluster events,
      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
      Now, the scheduling queue notices extenders' failures and requeue Pods rejected by Extenders appropriately. ([#122045](https://github.com/kubernetes/kubernetes/pull/122045), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top