Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Starling (0.48 sec)

  1. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/q$'
    stdout '^example.com/r$'
    stdout '^example.com/t$'
    stdout '^example.com/u$'
    
    
    # 'go list all' lists the fixpoint of iterating 'go list -deps -test' starting
    # with the packages in the main module, then reducing to only the non-test
    # variants of those packages.
    
    go list -f $PKGFMT all
    stdout -count=13 '^.'
    stdout '^example.com/a$'
    stdout '^example.com/b$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  2. doc/godebug.md

    packages that are built. For more fine-grained control,
    starting in Go 1.21, a main package's source files
    can include one or more `//go:debug` directives at the top of the file
    (preceding the `package` statement).
    The `godebug` lines in the previous example would be written:
    
    	//go:debug default=go1.21
    	//go:debug panicnil=1
    	//go:debug asynctimerchan=0
    
    Starting in Go 1.21, the Go toolchain treats a `//go:debug` directive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top