Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Points (0.65 sec)

  1. doc/next/6-stdlib/99-minor/os/61893.md

    On Windows, the mode bits reported by [Lstat] and [Stat] for
    reparse points changed. Mount points no longer have [ModeSymlink] set,
    and reparse points that are not symlinks, Unix sockets, or dedup files
    now always have [ModeIrregular] set.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 386 bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    On Windows, [EvalSymlinks] no longer evaluates mount points,
    which was a source of many inconsistencies and bugs.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/README.md

    They must be called from within the docker container.
    
    ### asm files
    
    The hand-written assembly file at `asm_${GOOS}_${GOARCH}.s` implements system
    call dispatch. There are three entry points:
    ```
      func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)
      func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr)
      func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr)
    ```
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/gofmt/testdata/composites.golden

    	"bal": {3, 4},
    }
    
    // from exp/4s/data.go
    var pieces4 = []Piece{
    	{0, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    	{1, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    	{2, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    	{3, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    }
    
    var _ = [42]*T{
    	{},
    	{1, 2},
    	{3, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_stack_v1.0.0.txt

    Module with a function that prints file name for the top stack frame.
    Different versions of this module are identical, but they should return
    different file names with -trimpath.
    -- .mod --
    module example.com/stack
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0"}
    -- stack.go --
    package stack
    
    import "runtime"
    
    func TopFile() string {
    	_, file, _, _ := runtime.Caller(0)
    	return file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 14 22:55:12 UTC 2019
    - 380 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_stack_v1.0.1.txt

    Module with a function that prints file name for the top stack frame.
    Different versions of this module are identical, but they should return
    different file names with -trimpath.
    -- .mod --
    module example.com/stack
    
    go 1.14
    -- .info --
    {"Version":"v1.0.1"}
    -- stack.go --
    package stack
    
    import "runtime"
    
    func TopFile() string {
    	_, file, _, _ := runtime.Caller(0)
    	return file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 14 22:55:12 UTC 2019
    - 380 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_multiple.txt

    # This test checks that 'go test' prints a reasonable error when fuzzing is
    # enabled, and multiple package or multiple fuzz targets match.
    # TODO(#46312): support fuzzing multiple targets in multiple packages.
    
    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # With fuzzing disabled, multiple targets can be tested.
    go test ./...
    
    # With fuzzing enabled, at most one package may be tested,
    # even if only one package contains fuzz targets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/hist.dlv-dbg.nexts

      ./testdata/hist.go
    55:	func test() {
    57:		l := line{point{1 + zero, 2 + zero}, point{3 + zero, 4 + zero}}
    58:		tinycall()                // this forces l etc to stack
    59:		dx := l.end.x - l.begin.x //gdb-dbg=(l.begin.x,l.end.y)//gdb-opt=(l,dx/O,dy/O)
    60:		dy := l.end.y - l.begin.y //gdb-opt=(dx,dy/O)
    61:		sink = dx + dy            //gdb-opt=(dx,dy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/testdata/hist.dlv-opt.nexts

      ./testdata/hist.go
    55:	func test() {
    57:		l := line{point{1 + zero, 2 + zero}, point{3 + zero, 4 + zero}}
    58:		tinycall()                // this forces l etc to stack
    59:		dx := l.end.x - l.begin.x //gdb-dbg=(l.begin.x,l.end.y)//gdb-opt=(l,dx/O,dy/O)
    60:		dy := l.end.y - l.begin.y //gdb-opt=(dx,dy/O)
    61:		sink = dx + dy            //gdb-opt=(dx,dy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_lazy_self.txt

    go list -m all
    stdout '^golang.org/issue/46078$'
    
    # 'go mod tidy' should fix this (and not crash).
    go mod tidy
    
    
    # We prune out redundant roots very early on in module loading, and at that
    # point the indirect requirement on example.net/x v0.1.0 appears to be
    # irrelevant. It should be pruned out; when the import of "example.net/x" is
    # later resolved, it should resolve at the latest version (v0.2.0), not the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 20:06:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top