Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Primer (0.76 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. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "driver": {
                "default": "",
                "description": "driver is the name of the driver to use for this volume. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      
      <mime-type type="application/vnd.sun.xml.writer">
        <sub-class-of type="application/zip"/>
        <glob pattern="*.sxw"/>
      </mime-type>
      <!-- can't currently find any diff in contents btwn writer
        and template. Must rely on extension -->
      <mime-type type="application/vnd.sun.xml.writer.template">
        <sub-class-of type="application/vnd.sun.xml.writer"/>
        <glob pattern="*.stw"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top