Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for cmap (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	POLLPRI                         = 0x0010
    	POLLERR                         = 0x0020
    	POLLHUP                         = 0x0040
    	POLLNVAL                        = 0x0080
    	PROT_READ                       = 0x1 // mmap - page can be read
    	PROT_WRITE                      = 0x2 // page can be written
    	PROT_NONE                       = 0x4 // can't be accessed
    	PROT_EXEC                       = 0x8 // can be executed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"cityscape":                            "\U0001f3d9\ufe0f",
    	"cl":                                   "\U0001f191",
    	"clamp":                                "\U0001f5dc\ufe0f",
    	"clap":                                 "\U0001f44f",
    	"clapper":                              "\U0001f3ac",
    	"classical_building":                   "\U0001f3db\ufe0f",
    	"climbing":                             "\U0001f9d7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    	}
    	return
    }
    
    var libc_write_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_write write "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    	}
    	return
    }
    
    var libc_write_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_write write "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteStreams.java

       *       channel have their own file descriptors. Generally this only happens when both channels
       *       are files or sockets. This performs zero copies - the bytes never enter userspace.
       *   <li>Use mmap(2) or equivalent. Requires that either the input channel or the output channel
       *       have file descriptors. Bytes are copied from the file into a kernel buffer, then directly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      repeated string portals = 7;
    
      // chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication
      // +optional
      optional bool chapAuthDiscovery = 8;
    
      // chapAuthSession defines whether support iSCSI Session CHAP authentication
      // +optional
      optional bool chapAuthSession = 11;
    
      // secretRef is the CHAP Secret for iSCSI target and initiator authentication
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// +optional
    	Portals []string
    	// Optional: whether support iSCSI Discovery CHAP authentication
    	// +optional
    	DiscoveryCHAPAuth bool
    	// Optional: whether support iSCSI Session CHAP authentication
    	// +optional
    	SessionCHAPAuth bool
    	// Optional: CHAP secret for iSCSI target and initiator authentication.
    	// The secret is used if either DiscoveryCHAPAuth or SessionCHAPAuth is true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    func (HostAlias) SwaggerDoc() map[string]string {
    	return map_HostAlias
    }
    
    var map_HostIP = map[string]string{
    	"":   "HostIP represents a single IP address allocated to the host.",
    	"ip": "IP is the IP address assigned to the host",
    }
    
    func (HostIP) SwaggerDoc() map[string]string {
    	return map_HostIP
    }
    
    var map_HostPathVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. src/runtime/os_linux.go

    		// try using mincore to detect the physical page size.
    		// mincore should return EINVAL when address is not a multiple of system page size.
    		const size = 256 << 10 // size of memory region to allocate
    		p, err := mmap(nil, size, _PROT_READ|_PROT_WRITE, _MAP_ANON|_MAP_PRIVATE, -1, 0)
    		if err != 0 {
    			return
    		}
    		var n uintptr
    		for n = 4 << 10; n < size; n <<= 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      repeated string portals = 7;
    
      // chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication
      // +optional
      optional bool chapAuthDiscovery = 8;
    
      // chapAuthSession defines whether support iSCSI Session CHAP authentication
      // +optional
      optional bool chapAuthSession = 11;
    
      // secretRef is the CHAP Secret for iSCSI target and initiator authentication
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top