Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for t_long (0.21 sec)

  1. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.",
                "type": "string"
              },
              "kind": {
                "description": "Kind is the API kind the resources belong to. Required.",
                "type": "string"
              }
            },
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                description: GlobalNetworkSetSpec contains the specification for a NetworkSet
                  resource.
                properties:
                  nets:
                    description: The list of IP networks that belong to this set.
                    items:
                      type: string
                    type: array
                type: object
            type: object
        served: true
        storage: true
    status:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if len(driverName) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath, ""))
    	}
    
    	if len(driverName) > 63 {
    		allErrs = append(allErrs, field.TooLong(fldPath, driverName, 63))
    	}
    
    	for _, msg := range validation.IsDNS1123Subdomain(strings.ToLower(driverName)) {
    		allErrs = append(allErrs, field.Invalid(fldPath, driverName, msg))
    	}
    
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// +optional
    	PersistentVolumeReclaimPolicy PersistentVolumeReclaimPolicy
    	// Name of StorageClass to which this persistent volume belongs. Empty value
    	// means that this volume does not belong to any StorageClass.
    	// +optional
    	StorageClassName string
    	// A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
    	// simply fail if one is invalid.
    	// +optional
    	MountOptions []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)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"storageClassName":              "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
    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/generated.proto

      // +optional
      optional string persistentVolumeReclaimPolicy = 5;
    
      // storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value
      // means that this volume does not belong to any StorageClass.
      // +optional
      optional string storageClassName = 6;
    
      // mountOptions is the list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
      // simply fail if one is invalid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    - Added a redundant process to remove tracking finalizers from Pods that belong to Jobs. The process kicks in after the control plane marks a Job as finished. ([#119944](https://github.com/kubernetes/kubernetes/pull/119944), [@Sharpz7](https://github.com/Sharpz7))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "storageClassName": {
                "description": "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
                "type": "string"
              },
              "storageos": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value
    	// means that this volume does not belong to any StorageClass.
    	// +optional
    	StorageClassName string `json:"storageClassName,omitempty" protobuf:"bytes,6,opt,name=storageClassName"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      return tensorflow::GetTypeFromTFTensorShape({dim}, b.getIndexType());
    }
    
    // Given a value (broadcast_to) and a feature dimension, broadcasts a 1D
    // value (broadcast_from) along that feature dimension. This is a shortcut
    // for the cases where a 1D tensor must be broadcast along a specific feature
    // dimension, which can vary based on data layout, etc.
    //
    // The extent of `broadcast_from` dim0 must be equal to the extent of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top