Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for ONCE (0.12 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
    	// will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
    	// If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
    	// will be set by the persistentvolume controller if it exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // Broadcasts `input` to the shape of `broadcast_to` value following
    // TF::BroadcastTo semantics.
    //
    // Requires that input is a ranked tensor.
    //
    // TODO(hinsu): Utilize TF::ShapeOp followed by TF::BroadcastTo once ShapeOp
    // supports unranked inputs in the lowering.
    static Value BroadcastToShapeOf(Location loc, Value input, Value broadcast_to,
                                    OpBuilder &builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    	// PVController needs to update PVC.Spec w/ VolumeName.
    	// Claims are immutable in order to enforce quota, range limits, etc. without gaming the system.
    	if len(oldPvc.Spec.VolumeName) == 0 {
    		// volumeName changes are allowed once.
    		oldPvcClone.Spec.VolumeName = newPvcClone.Spec.VolumeName // +k8s:verify-mutation:reason=clone
    	}
    
    	if validateStorageClassUpgradeFromAnnotation(oldPvcClone.Annotations, newPvcClone.Annotations,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":          "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass
    	// will be applied to the claim but it's not allowed to reset this field to empty string once it is set.
    	// If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass
    	// will be set by the persistentvolume controller if it exists.
    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. src/net/http/h2_bundle.go

    // Return the first number n such that n*base >= 1<<64.
    func http2cutoff64(base int) uint64 {
    	if base < 2 {
    		return 0
    	}
    	return (1<<64-1)/uint64(base) + 1
    }
    
    var (
    	http2commonBuildOnce   sync.Once
    	http2commonLowerHeader map[string]string // Go-Canonical-Case -> lower-case
    	http2commonCanonHeader map[string]string // lower-case -> Go-Canonical-Case
    )
    
    func http2buildCommonHeaderMapsOnce() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

    // Represents a Persistent Disk resource in AWS.
    //
    // An AWS EBS disk must exist before mounting to a container. The disk
    // must also be in the same AWS zone as the kubelet. An AWS EBS disk
    // can only be mounted as read/write once. AWS EBS volumes support
    // ownership management and SELinux relabeling.
    message AWSElasticBlockStoreVolumeSource {
      // volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. doc/go_spec.html

    <p>
    A <i>string type</i> represents the set of string values.
    A string value is a (possibly empty) sequence of bytes.
    The number of bytes is called the length of the string and is never negative.
    Strings are immutable: once created,
    it is impossible to change the contents of a string.
    The predeclared string type is <code>string</code>;
    it is a <a href="#Type_definitions">defined type</a>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    - PersistentVolumeClaim objects are no longer left with storage class set to `nil` forever, but will be updated retroactively once any StorageClass is set or created as default. ([#...
    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