Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 257 for physical (0.14 sec)

  1. src/runtime/internal/sys/consts.go

    // This arithmetic must match that in cmd/internal/objabi/stack.go:stackGuardMultiplier.
    const StackGuardMultiplier = 1 + goos.IsAix + isRace
    
    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = goarch.DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/syscall/ztypes_freebsd_386.go

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      IfData
    }
    
    type ifData struct {
    	Type        uint8
    	Physical    uint8
    	Addrlen     uint8
    	Hdrlen      uint8
    	Link_state  uint8
    	Vhid        uint8
    	Baudrate_pf uint8
    	Datalen     uint8
    	Mtu         uint32
    	Metric      uint32
    	Baudrate    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. src/syscall/ztypes_freebsd_riscv64.go

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      IfData
    }
    
    type ifData struct {
    	Type        uint8
    	Physical    uint8
    	Addrlen     uint8
    	Hdrlen      uint8
    	Link_state  uint8
    	Vhid        uint8
    	Baudrate_pf uint8
    	Datalen     uint8
    	Mtu         uint64
    	Metric      uint64
    	Baudrate    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. src/runtime/vdso_elf32.go

    }
    
    type elfPhdr struct {
    	p_type   uint32 /* Segment type */
    	p_offset uint32 /* Segment file offset */
    	p_vaddr  uint32 /* Segment virtual address */
    	p_paddr  uint32 /* Segment physical address */
    	p_filesz uint32 /* Segment size in file */
    	p_memsz  uint32 /* Segment size in memory */
    	p_flags  uint32 /* Segment flags */
    	p_align  uint32 /* Segment alignment */
    }
    
    type elfShdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. src/syscall/ztypes_freebsd_amd64.go

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      IfData
    }
    
    type ifData struct {
    	Type        uint8
    	Physical    uint8
    	Addrlen     uint8
    	Hdrlen      uint8
    	Link_state  uint8
    	Vhid        uint8
    	Baudrate_pf uint8
    	Datalen     uint8
    	Mtu         uint64
    	Metric      uint64
    	Baudrate    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtStandaloneProjectStructureProvider.kt

            }
    
            computeSpecialModule(containingFile)?.let { return it }
    
            if (virtualFile == null) {
                throw KotlinExceptionWithAttachments("Cannot find a KtModule for a non-physical file")
                    .withPsiAttachment("containingFile", containingFile)
                    .withAttachment("contextualModule", contextualModule?.asDebugString())
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/runtime/vdso_elf64.go

    }
    
    type elfPhdr struct {
    	p_type   uint32 /* Segment type */
    	p_flags  uint32 /* Segment flags */
    	p_offset uint64 /* Segment file offset */
    	p_vaddr  uint64 /* Segment virtual address */
    	p_paddr  uint64 /* Segment physical address */
    	p_filesz uint64 /* Segment size in file */
    	p_memsz  uint64 /* Segment size in memory */
    	p_align  uint64 /* Segment alignment */
    }
    
    type elfShdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device.h

    // an error.
    //
    // All component tensors must have the same dtype. Currently they must also have
    // the same shape, although this requirement may be relaxed in the future.
    //
    // `device_name` must not name an existing physical or custom device (see
    // the documentation for TFE_RegisterCustomDevice for more information).
    //
    // Tensors may be copied on or off the device explicitly using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 04 21:49:16 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  9. src/internal/goarch/goarch.go

    // BigEndian reports whether the architecture is big-endian.
    const BigEndian = IsArmbe|IsArm64be|IsMips|IsMips64|IsPpc|IsPpc64|IsS390|IsS390x|IsSparc|IsSparc64 == 1
    
    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = _DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    }
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Data    IfData
    }
    
    type ifData struct {
    	Type       uint8
    	Physical   uint8
    	Addrlen    uint8
    	Hdrlen     uint8
    	Link_state uint8
    	Vhid       uint8
    	Datalen    uint16
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top