Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fault (0.19 sec)

  1. src/arena/arena.go

    // but this fault is also not guaranteed.
    func New[T any](a *Arena) *T {
    	return runtime_arena_arena_New(a.a, reflectlite.TypeOf((*T)(nil))).(*T)
    }
    
    // MakeSlice creates a new []T with the provided capacity and length. The []T must
    // not be used after the arena is freed. Accessing the underlying storage of the
    // slice after free may result in a fault, but this fault is also not guaranteed.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/bytes/boundary_test.go

    	"testing"
    )
    
    // This file tests the situation where byte operations are checking
    // data very near to a page boundary. We want to make sure those
    // operations do not read across the boundary and cause a page
    // fault where they shouldn't.
    
    // These tests run only on linux. The code being tested is
    // not OS-specific, so it does not need to be tested on all
    // operating systems.
    
    // dangerousSlice returns a slice which is immediately
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 30 20:05:58 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  3. doc/go_mem.html

    }
    </pre>
    
    into:
    
    <pre>
    n := 0
    local := *shared
    for i := 0; i < m; i++ {
    	n += local
    }
    </pre>
    
    <p>
    provided it can be proved that <code>*shared</code> will not fault on access,
    because the potential added read will not affect any existing concurrent reads or writes.
    On the other hand, the rewrite would not be valid in a source-to-source translator.
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const EDEVERR Errno
    pkg syscall (darwin-arm64), const EDOM = 33
    pkg syscall (darwin-arm64), const EDQUOT = 69
    pkg syscall (darwin-arm64), const EEXIST = 17
    pkg syscall (darwin-arm64), const EFAULT = 14
    pkg syscall (darwin-arm64), const EFBIG = 27
    pkg syscall (darwin-arm64), const EFTYPE = 79
    pkg syscall (darwin-arm64), const EFTYPE Errno
    pkg syscall (darwin-arm64), const EHOSTDOWN = 64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EDOOFUS = 88
    pkg syscall (freebsd-arm64), const EDOOFUS Errno
    pkg syscall (freebsd-arm64), const EDQUOT = 69
    pkg syscall (freebsd-arm64), const EEXIST = 17
    pkg syscall (freebsd-arm64), const EFAULT = 14
    pkg syscall (freebsd-arm64), const EFBIG = 27
    pkg syscall (freebsd-arm64), const EFTYPE = 79
    pkg syscall (freebsd-arm64), const EFTYPE Errno
    pkg syscall (freebsd-arm64), const EHOSTDOWN = 64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  6. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EDOOFUS Errno #53466
    pkg syscall (freebsd-riscv64), const EDQUOT = 69 #53466
    pkg syscall (freebsd-riscv64), const EEXIST = 17 #53466
    pkg syscall (freebsd-riscv64), const EFAULT = 14 #53466
    pkg syscall (freebsd-riscv64), const EFBIG = 27 #53466
    pkg syscall (freebsd-riscv64), const EFTYPE = 79 #53466
    pkg syscall (freebsd-riscv64), const EFTYPE Errno #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (darwin-386), const EDEVERR = 83
    pkg syscall (darwin-386), const EDOM = 33
    pkg syscall (darwin-386), const EDQUOT = 69
    pkg syscall (darwin-386), const EEXIST = 17
    pkg syscall (darwin-386), const EFAULT = 14
    pkg syscall (darwin-386), const EFBIG = 27
    pkg syscall (darwin-386), const EFTYPE = 79
    pkg syscall (darwin-386), const EHOSTDOWN = 64
    pkg syscall (darwin-386), const EHOSTUNREACH = 65
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top