Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for eof (0.19 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      optional SecurityContext securityContext = 15;
    
      // Whether this container should allocate a buffer for stdin in the container runtime. If this
      // is not set, reads from stdin in the container will always result in EOF.
      // Default is false.
      // +optional
      optional bool stdin = 16;
    
      // Whether the container runtime should close the stdin channel after it has been opened by
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const EV_DISPATCH ideal-int
    pkg syscall (darwin-arm64), const EV_ENABLE = 4
    pkg syscall (darwin-arm64), const EV_ENABLE ideal-int
    pkg syscall (darwin-arm64), const EV_EOF = 32768
    pkg syscall (darwin-arm64), const EV_EOF ideal-int
    pkg syscall (darwin-arm64), const EV_ERROR = 16384
    pkg syscall (darwin-arm64), const EV_ERROR ideal-int
    pkg syscall (darwin-arm64), const EV_FLAG0 = 4096
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const EV_ENABLE = 4
    pkg syscall (netbsd-arm64-cgo), const EV_ENABLE ideal-int
    pkg syscall (netbsd-arm64-cgo), const EV_EOF = 32768
    pkg syscall (netbsd-arm64-cgo), const EV_EOF ideal-int
    pkg syscall (netbsd-arm64-cgo), const EV_ERROR = 16384
    pkg syscall (netbsd-arm64-cgo), const EV_ERROR ideal-int
    pkg syscall (netbsd-arm64-cgo), const EVFILT_AIO = 2
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    constant, even if the literal's fractional part is zero.
    </p>
    
    <pre>
    const Pi float64 = 3.14159265358979323846
    const zero = 0.0         // untyped floating-point constant
    const (
    	size int64 = 1024
    	eof        = -1  // untyped integer constant
    )
    const a, b, c = 3, 4, "foo"  // a = 3, b = 4, c = "foo", untyped integer and string constants
    const u, v float32 = 0, 3    // u = 0.0, v = 3.0
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top