Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Primer (0.4 sec)

  1. src/net/http/h2_bundle.go

    	<-cw
    }
    
    // bufferedWriter is a buffered writer that writes to w.
    // Its buffered writer is lazily allocated as needed, to minimize
    // idle memory usage with many connections.
    type http2bufferedWriter struct {
    	_  http2incomparable
    	w  io.Writer     // immutable
    	bw *bufio.Writer // non-nil when data is buffered
    }
    
    func http2newBufferedWriter(w io.Writer) *http2bufferedWriter {
    	return &http2bufferedWriter{w: w}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +optional
    	ReadOnly bool
    	// Optional: Extra driver options if any.
    	// +optional
    	Options map[string]string
    }
    
    // FlexVolumeSource represents a generic volume resource that is
    // provisioned/attached using an exec based plugin.
    type FlexVolumeSource struct {
    	// Driver is the name of the driver to use for this volume.
    	Driver string
    	// Filesystem type to mount.
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_Binding
    }
    
    var map_CSIPersistentVolumeSource = map[string]string{
    	"":                           "Represents storage that is managed by an external CSI volume driver (Beta feature)",
    	"driver":                     "driver is the name of the driver to use for this volume. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // Represents storage that is managed by an external CSI volume driver (Beta feature)
    type CSIPersistentVolumeSource struct {
    	// driver is the name of the driver to use for this volume.
    	// Required.
    	Driver string `json:"driver" protobuf:"bytes,1,opt,name=driver"`
    
    	// volumeHandle is the unique volume name returned by the CSI volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      optional ObjectReference target = 2;
    }
    
    // Represents storage that is managed by an external CSI volume driver (Beta feature)
    message CSIPersistentVolumeSource {
      // driver is the name of the driver to use for this volume.
      // Required.
      optional string driver = 1;
    
      // volumeHandle is the unique volume name returned by the CSI 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)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

          },
          "io.k8s.api.core.v1.CSIVolumeSource": {
            "description": "Represents a source location of a volume to mount, managed by an external CSI driver",
            "properties": {
              "driver": {
                "default": "",
                "description": "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.",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_CSIPersistentVolumeSource_To_core_CSIPersistentVolumeSource(in *v1.CSIPersistentVolumeSource, out *core.CSIPersistentVolumeSource, s conversion.Scope) error {
    	out.Driver = in.Driver
    	out.VolumeHandle = in.VolumeHandle
    	out.ReadOnly = in.ReadOnly
    	out.FSType = in.FSType
    	out.VolumeAttributes = *(*map[string]string)(unsafe.Pointer(&in.VolumeAttributes))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Unlocked the `CSIMigrationvSphere` feature gate.
      The change allow users to continue using the in-tree vSphere driver,pending a vSphere
      CSI driver release that has with GA support for Windows, XFS, and raw block access. ([#116342](https://github.com/kubernetes/kubernetes/pull/116342), [@msau42](https://github.com/msau42)) [SIG Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	}
    	return allErrs
    }
    
    func validateFlexVolumeSource(fv *core.FlexVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(fv.Driver) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("driver"), ""))
    	}
    
    	// Make sure user-specified options don't use kubernetes namespaces
    	for k := range fv.Options {
    		namespace := k
    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

     - Deprecated support for CSI migration of `Ceph RBD volumes`. Users who were relying on Kubernetes' ability
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top