Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for buildVersion (0.61 sec)

  1. src/cmd/link/internal/ld/main.go

    	} else {
    		addstrdata1(ctxt, "runtime.defaultGOROOT="+buildcfg.GOROOT)
    	}
    
    	buildVersion := buildcfg.Version
    	if goexperiment := buildcfg.Experiment.String(); goexperiment != "" {
    		buildVersion += " X:" + goexperiment
    	}
    	addstrdata1(ctxt, "runtime.buildVersion="+buildVersion)
    
    	// TODO(matloob): define these above and then check flag values here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    	if s != "" {
    		return s
    	}
    	return defaultGOROOT
    }
    
    // buildVersion is the Go tree's version string at build time.
    //
    // If any GOEXPERIMENTs are set to non-default values, it will include
    // "X:<GOEXPERIMENT>".
    //
    // This is set by the linker.
    //
    // This is accessed by "go version <binary>".
    var buildVersion string
    
    // Version returns the Go tree's version string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/debug/buildinfo/buildinfo.go

    	// The first 14 bytes are buildInfoMagic.
    	// The next two bytes indicate pointer size in bytes (4 or 8) and endianness
    	// (0 for little, 1 for big).
    	// Two virtual addresses to Go strings follow that: runtime.buildVersion,
    	// and runtime.modinfo.
    	// On 32-bit platforms, the last 8 bytes are unused.
    	// If the endianness has the 2 bit set, then the pointers are zero
    	// and the 32-byte header is followed by varint-prefixed string data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/runtime/heapdump.go

    			}
    			if base+heapArenaBytes > arenaEnd {
    				arenaEnd = base + heapArenaBytes
    			}
    		}
    	}
    	dumpint(uint64(arenaStart))
    	dumpint(uint64(arenaEnd))
    	dumpstr(goarch.GOARCH)
    	dumpstr(buildVersion)
    	dumpint(uint64(ncpu))
    }
    
    func itab_callback(tab *itab) {
    	t := tab.Type
    	dumptype(t)
    	dumpint(tagItab)
    	dumpint(uint64(uintptr(unsafe.Pointer(tab))))
    	dumpint(uint64(uintptr(unsafe.Pointer(t))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    	for _, line := range lines {
    		key, val, ok := strings.Cut(string(line), ": ")
    		if !ok {
    			continue
    		}
    		switch key {
    		case "ProductVersion":
    			iosVer = val
    		case "BuildVersion":
    			buildVer = val
    		}
    	}
    	if iosVer == "" || buildVer == "" {
    		return "", errors.New("failed to parse ideviceinfo output")
    	}
    	verSplit := strings.Split(iosVer, ".")
    	if len(verSplit) > 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    	})
    }
    
    // TestLDFlags checks whether building mesh command with
    // -ldflags "-X istio.io/istio/pkg/version.buildHub=myhub -X istio.io/istio/pkg/version.buildVersion=mytag"
    // results in these values showing up in a generated manifest.
    func TestLDFlags(t *testing.T) {
    	tmpHub, tmpTag := version.DockerInfo.Hub, version.DockerInfo.Tag
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

                return executeMultipleBuilds(action, requestMetaData, buildSession, cancellationToken, cancellableOperationManager, alwaysOpenExecutionGate);
            } else {
                try {
                    return delegate.execute(action, buildSession);
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            1 * client1.isFailed() >> true
            0 * client1.stop()
            1 * client2.stop()
        }
    
        def "can stop session-scoped clients"() {
            listenerManager = new DefaultListenerManager(Scope.BuildSession)
            manager = new WorkerDaemonClientsManager(starter, listenerManager, loggingManager, memoryManager, new MBeanOsMemoryInfo(new DefaultMBeanAttributeProvider()))
            def client1 = Mock(WorkerDaemonClient)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

                textOutputFactory,
                executorFactory,
                requestContext,
                cancellationToken,
                deploymentRegistry,
                userHomeListenerManager.createChild(Scope.BuildSession),
                buildExecutionTimer,
                Time.clock(),
                TestFiles.fileSystem(),
                CaseSensitivity.CASE_SENSITIVE,
                virtualFileSystem,
                delegate)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSetToFileCollectionFactory.java

    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    @ServiceScope(Scope.BuildSession.class)
    public class ArtifactSetToFileCollectionFactory {
        private final BuildOperationExecutor buildOperationExecutor;
        private final TaskDependencyFactory taskDependencyFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top