Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dict (0.33 sec)

  1. src/cmd/dist/build.go

    //
    // WARNING: This command runs after cmd/dist is built with the Go bootstrap toolchain.
    // It rebuilds and installs cmd/dist with the new toolchain, so other
    // commands (like "go tool dist test" in run.bash) can rely on bug fixes
    // made since the Go bootstrap version, but this function cannot.
    func cmdbootstrap() {
    	timelog("start", "dist bootstrap")
    	defer timelog("end", "dist bootstrap")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	// separate binary from dist so it need not build with the bootstrap
    	// toolchain.
    	//
    	// TODO(prattmic): If we split dist bootstrap and dist test then this
    	// could be simplified to directly use internal/sysinfo here.
    	return t.dirCmd(filepath.Join(goroot, "src/cmd/internal/metadata"), gorootBinGo, []string{"run", "main.go"}).Run()
    }
    
    // testName returns the dist test name for a given package and variant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    	s.f.Cache.freeValueSlice(s.orig)
    }
    
    // Adds a use record for id at distance dist from the start of the block.
    // All calls to addUse must happen with nonincreasing dist.
    func (s *regAllocState) addUse(id ID, dist int32, pos src.XPos) {
    	r := s.freeUseRecords
    	if r != nil {
    		s.freeUseRecords = r.next
    	} else {
    		r = &use{}
    	}
    	r.dist = dist
    	r.pos = pos
    	r.next = s.values[id].uses
    	s.values[id].uses = r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("https://parent.url/issues", pom.getValue("issueManagement/url"));
            assertEquals("https://parent.url/ci", pom.getValue("ciManagement/url"));
            assertEquals("https://parent.url/dist", pom.getValue("distributionManagement/repository/url"));
            assertEquals("https://parent.url/snaps", pom.getValue("distributionManagement/snapshotRepository/url"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    			}
    			web.EnableTestHooks(interceptors)
    		}
    
    		cmdgo.Main()
    		os.Exit(0)
    	}
    	os.Setenv("CMDGO_TEST_RUN_MAIN", "true")
    
    	// $GO_GCFLAGS a compiler debug flag known to cmd/dist, make.bash, etc.
    	// It is not a standard go command flag; use os.Getenv, not cfg.Getenv.
    	if os.Getenv("GO_GCFLAGS") != "" {
    		fmt.Fprintf(os.Stderr, "testing: warning: no tests to run\n") // magic string for cmd/go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    // It uses $CC if set, or else $GCC, or else the compiler recorded
    // during the initial build as defaultCC.
    // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
    //
    // The compiler command line is split into arguments on whitespace. Quotes
    // are understood, so arguments may contain whitespace.
    //
    // checkGCCBaseCmd confirms that the compiler exists in PATH, returning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top