Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Write (0.07 sec)

  1. src/net/http/h2_bundle.go

    	PusherID uint32
    }
    
    // FrameWriteRequest is a request to write a frame.
    type http2FrameWriteRequest struct {
    	// write is the interface value that does the writing, once the
    	// WriteScheduler has selected this frame to write. The write
    	// functions are all defined in write.go.
    	write http2writeFramer
    
    	// stream is the stream on which this frame will be written.
    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

    const (
    	// can be mounted read/write mode to exactly 1 host
    	ReadWriteOnce PersistentVolumeAccessMode = "ReadWriteOnce"
    	// can be mounted in read-only mode to many hosts
    	ReadOnlyMany PersistentVolumeAccessMode = "ReadOnlyMany"
    	// can be mounted in read/write mode to many hosts
    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted read/write mode to exactly 1 pod
    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. src/cmd/compile/internal/ssagen/ssa.go

    			fn = ir.Syms.Racewriterange
    		default:
    			panic("unreachable")
    		}
    		needWidth = true
    	} else if base.Flag.Race {
    		// for non-composite objects we can write just the start
    		// address, as any write must write the first byte.
    		switch kind {
    		case instrumentRead:
    			fn = ir.Syms.Raceread
    		case instrumentWrite:
    			fn = ir.Syms.Racewrite
    		default:
    			panic("unreachable")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"cachingMode": "cachingMode is the Host Caching mode: None, Read Only, Read Write.",
    	"fsType":      "fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
    	"readOnly":    "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
      // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
      // +optional
      optional string fsType = 4;
    
      // readOnly Defaults to false (read/write). ReadOnly here will force
    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. staging/src/k8s.io/api/core/v1/types.go

    const (
    	// can be mounted in read/write mode to exactly 1 host
    	ReadWriteOnce PersistentVolumeAccessMode = "ReadWriteOnce"
    	// can be mounted in read-only mode to many hosts
    	ReadOnlyMany PersistentVolumeAccessMode = "ReadOnlyMany"
    	// can be mounted in read/write mode to many hosts
    	ReadWriteMany PersistentVolumeAccessMode = "ReadWriteMany"
    	// can be mounted in read/write mode to exactly 1 pod
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "description": "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.",
            "properties": {
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </p>
    
    <pre>
    type Reader interface {
    	Read(p []byte) (n int, err error)
    	Close() error
    }
    
    type Writer interface {
    	Write(p []byte) (n int, err error)
    	Close() error
    }
    
    // ReadWriter's methods are Read, Write, and Close.
    type ReadWriter interface {
    	Reader  // includes methods of Reader in ReadWriter's method set
    	Writer  // includes methods of Writer in ReadWriter's method set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-60807`](https://youtrack.jetbrains.com/issue/KT-60807) [klib] Add an option to write out header klibs
    
    #### Fixes
    
    - [`KT-67401`](https://youtrack.jetbrains.com/issue/KT-67401) KLib ABI dump: write plain targets in the manifest
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                  iptablesPostWriteCheckInterval:
                    description: 'IptablesPostWriteCheckInterval is the period after Felix
                      has done a write to the dataplane that it schedules an extra read
                      back in order to check the write was not clobbered by another process.
                      This should only occur if another application on the system doesn''t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top