Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BuildSetting (0.22 sec)

  1. src/runtime/debug/mod.go

    	// Settings describes the build settings used to build the binary.
    	Settings []BuildSetting
    }
    
    // A Module describes a single module included in a build.
    type Module struct {
    	Path    string  // module path
    	Version string  // module version
    	Sum     string  // checksum
    	Replace *Module // replaced by this module
    }
    
    // A BuildSetting is a key-value pair describing one setting that influenced a build.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

             *
             * The build setting may be optionally prefixed by '$' which will be stripped.
             */
            public static Optional<SourceTree> fromBuildSetting(String buildSetting) {
                String data = CharMatcher.is('$').trimLeadingFrom(buildSetting);
                switch (data) {
                    case "BUILT_PRODUCTS_DIR":
                        return Optional.of(BUILT_PRODUCTS_DIR);
                    case "SDKROOT":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. api/go1.18.txt

    pkg runtime/debug, type BuildInfo struct, GoVersion string
    pkg runtime/debug, type BuildInfo struct, Settings []BuildSetting
    pkg runtime/debug, type BuildSetting struct
    pkg runtime/debug, type BuildSetting struct, Key string
    pkg runtime/debug, type BuildSetting struct, Value string
    pkg strings, func Clone(string) string
    pkg strings, func Cut(string, string) (string, string, bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    func appendBuildSetting(info *debug.BuildInfo, key, value string) {
    	value = strings.ReplaceAll(value, "\n", " ") // make value safe
    	info.Settings = append(info.Settings, debug.BuildSetting{Key: key, Value: value})
    }
    
    // setBuildInfo gathers build information and sets it into
    // p.Internal.BuildInfo, which will later be formatted as a string and embedded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BuildInfo.GoVersion", Field, 18},
    		{"BuildInfo.Main", Field, 12},
    		{"BuildInfo.Path", Field, 12},
    		{"BuildInfo.Settings", Field, 18},
    		{"BuildSetting", Type, 18},
    		{"BuildSetting.Key", Field, 18},
    		{"BuildSetting.Value", Field, 18},
    		{"FreeOSMemory", Func, 1},
    		{"GCStats", Type, 1},
    		{"GCStats.LastGC", Field, 1},
    		{"GCStats.NumGC", Field, 1},
    		{"GCStats.Pause", Field, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top