Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for myversion (0.24 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                fqid == 'dependency-version-catalog:alias-not-finished'
                contextualLabel == 'Problem: In version catalog libs, dependency alias builder \'my.great.lib\' was not finished.'
                details == 'A version was not set or explicitly declared as not wanted'
                solutions == [
                    'Call `.version()` to give the alias a version',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>test</groupId>
        <artifactId>parent</artifactId>
        <version>1.0.0</version>
        <packaging>pom</packaging>
        <properties>
            <scala.version>2.12.1</scala.version>
            <scala.binary.version>2.12</scala.binary.version>
            <myversion>1.0.0</myversion>
        </properties>
    </project>
    """
    
            pomFile << """
    <project>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    			// "command-line-arguments" module must not exceed the Go version
    			// for the workspace.
    			goVersion = MainModules.GoVersion()
    			pruning = workspace
    			roots = []module.Version{
    				mainModule,
    				{Path: "go", Version: goVersion},
    				{Path: "toolchain", Version: gover.LocalToolchain()},
    			}
    		} else {
    			goVersion = gover.Local()
    			pruning = pruningForGoVersion(goVersion)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    		compatVersion := ld.TidyCompatibleVersion
    		goVersion := ld.requirements.GoVersion()
    		if compatVersion == "" {
    			if gover.Compare(goVersion, gover.GoStrictVersion) < 0 {
    				compatVersion = gover.Prev(goVersion)
    			} else {
    				// Starting at GoStrictVersion, we no longer maintain compatibility with
    				// versions older than what is listed in the go.mod file.
    				compatVersion = goVersion
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	// that the file contains "const Version = <Integer>".
    	goversionSource := readfile(pathf("%s/src/internal/goversion/goversion.go", goroot))
    	m := regexp.MustCompile(`(?m)^const Version = (\d+)`).FindStringSubmatch(goversionSource)
    	if m == nil {
    		fatalf("internal/goversion/goversion.go does not contain 'const Version = ...'")
    	}
    	version := fmt.Sprintf("devel go1.%s-", m[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    				if !seen[m] {
    					needsEnqueueing[m] = true
    					continue
    				}
    				reqs, _ := mg.g.RequiredBy(m)
    				for _, r := range reqs {
    					s := module.Version{Path: r.Path, Version: mg.g.Selected(r.Path)}
    					if gover.ModCompare(r.Path, s.Version, r.Version) > 0 && !seen[s] {
    						needsEnqueueing[s] = true
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    }
    
    func testVerifyConnection(t *testing.T, version uint16) {
    	checkFields := func(c ConnectionState, called *int, errorType string) error {
    		if c.Version != version {
    			return fmt.Errorf("%s: got Version %v, want %v", errorType, c.Version, version)
    		}
    		if c.HandshakeComplete {
    			return fmt.Errorf("%s: got HandshakeComplete, want false", errorType)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    func TestModuleVersion(t *testing.T) {
    	// version go1.dd must be able to typecheck go1.dd.0, go1.dd.1, etc.
    	goversion := fmt.Sprintf("go1.%d", goversion.Version)
    	for _, v := range []string{
    		goversion,
    		goversion + ".0",
    		goversion + ".1",
    		goversion + ".rc",
    	} {
    		conf := Config{GoVersion: v}
    		pkg := mustTypecheck("package p", &conf, nil)
    		if pkg.GoVersion() != conf.GoVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	tg.run("env", "GOVERSION")
    	envVersion := strings.TrimSpace(tg.stdout.String())
    
    	tg.run("version")
    	cmdVersion := strings.TrimSpace(tg.stdout.String())
    
    	// If 'go version' is "go version <version> <goos>/<goarch>", then
    	// 'go env GOVERSION' is just "<version>".
    	if cmdVersion == envVersion || !strings.Contains(cmdVersion, envVersion) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    func TestModuleVersion(t *testing.T) {
    	// version go1.dd must be able to typecheck go1.dd.0, go1.dd.1, etc.
    	goversion := fmt.Sprintf("go1.%d", goversion.Version)
    	for _, v := range []string{
    		goversion,
    		goversion + ".0",
    		goversion + ".1",
    		goversion + ".rc",
    	} {
    		conf := Config{GoVersion: v}
    		pkg := mustTypecheck("package p", &conf, nil)
    		if pkg.GoVersion() != conf.GoVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top