Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for Always (0.09 sec)

  1. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	ResultNoInfo ResultPropBits = 0
    	// This result always contains allocated memory.
    	ResultIsAllocatedMem ResultPropBits = 1 << iota
    	// This result is always a single concrete type that is
    	// implicitly converted to interface.
    	ResultIsConcreteTypeConvertedToInterface
    	// Result is always the same non-composite compile time constant.
    	ResultAlwaysSameConstant
    	// Result is always the same function or closure.
    	ResultAlwaysSameFunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_unsupported_goos.txt

    [compiler:gccgo] skip # gccgo assumes cross-compilation is always possible
    
    env GOOS=windwos # intentional misspelling of windows
    
    ! go build -n exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 18:25:35 UTC 2023
    - 191 bytes
    - Viewed (0)
  3. 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)
  4. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    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.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/version_build_settings.txt

    [short] skip
    
    # Compiler name is always added.
    go build
    go version -m m$GOEXE
    stdout '^\tbuild\t-compiler=gc$'
    stdout '^\tbuild\tGOOS='
    stdout '^\tbuild\tGOARCH='
    [GOARCH:amd64] stdout '^\tbuild\tGOAMD64='
    ! stdout asmflags|gcflags|ldflags|gccgoflags
    
    # Toolchain flags are added if present.
    # The raw flags are included, with package patterns if specified.
    go build -asmflags=example.com/m=-D=FOO=bar
    go version -m m$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/toolchain.go

    		return nil, fmt.Errorf("go language version %s is not a toolchain version", rev)
    	}
    
    	// Check that the underlying toolchain exists.
    	// We always ask about linux-amd64 because that one
    	// has always existed and is likely to always exist in the future.
    	// This avoids different behavior validating go versions on different
    	// architectures. The eventual download uses the right GOOS-GOARCH.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cache_vet.txt

    # The first command could be build instead of vet,
    # except that if the cache is empty and there's a net.a
    # in GOROOT/pkg, the build will not bother to regenerate
    # and cache the cgo outputs, whereas vet always will.
    
    go vet -x os/user
    ! stderr '^(clang|gcc)'  # should not have run compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 721 bytes
    - Viewed (0)
  8. src/cmd/doc/main.go

    // is printed. If there is a symbol but no package, the package in the current
    // directory is chosen. However, if the argument begins with a capital
    // letter it is always assumed to be a symbol in the current directory.
    //
    // Two arguments:
    //
    //	go doc <pkg> <sym>[.<methodOrField>]
    //
    // Show the documentation for the package, symbol, and method or field. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/import_test.go

    	ctx := context.Background()
    	rs := LoadModFile(ctx)
    
    	for _, tt := range importTests {
    		t.Run(strings.ReplaceAll(tt.path, "/", "_"), func(t *testing.T) {
    			// Note that there is no build list, so Import should always fail.
    			m, err := queryImport(ctx, tt.path, rs)
    
    			if tt.err == "" {
    				if err != nil {
    					t.Fatalf("queryImport(_, %q): %v", tt.path, err)
    				}
    			} else {
    				if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 15:29:06 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cmdflag/flag.go

    }
    
    // ParseOne sees if args[0] is present in the given flag set and if so,
    // sets its value and returns the flag along with the remaining (unused) arguments.
    //
    // ParseOne always returns either a non-nil Flag or a non-nil error,
    // and always consumes at least one argument (even on error).
    //
    // Unlike (*flag.FlagSet).Parse, ParseOne does not log its own errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 02:38:04 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top