Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pkgdep (0.09 sec)

  1. hack/local-up-cluster.sh

      [[ -n "${APISERVER_PID-}" ]] && kube::util::read-array APISERVER_PIDS < <(pgrep -P "${APISERVER_PID}" ; ps -o pid= -p "${APISERVER_PID}")
      [[ -n "${APISERVER_PIDS-}" ]] && sudo kill "${APISERVER_PIDS[@]}" 2>/dev/null
    
      # Check if the controller-manager is still running
      [[ -n "${CTLRMGR_PID-}" ]] && kube::util::read-array CTLRMGR_PIDS < <(pgrep -P "${CTLRMGR_PID}" ; ps -o pid= -p "${CTLRMGR_PID}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	Segpdata     sym.Segment // windows-only
    	Segxdata     sym.Segment // windows-only
    
    	Segments = []*sym.Segment{&Segtext, &Segrodata, &Segrelrodata, &Segdata, &Segdwarf, &Segpdata, &Segxdata}
    )
    
    const pkgdef = "__.PKGDEF"
    
    var (
    	// externalobj is set to true if we see an object compiled by
    	// the host compiler that is not from a package that is known
    	// to support internal linking mode.
    	externalobj = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    // second or two per package, and this function returns false for
    // about 100 packages.
    func (t *tester) packageHasBenchmarks(pkg string) bool {
    	pkgDir := filepath.Join(goroot, "src", pkg)
    	d, err := os.Open(pkgDir)
    	if err != nil {
    		return true // conservatively
    	}
    	defer d.Close()
    	names, err := d.Readdirnames(-1)
    	if err != nil {
    		return true // conservatively
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	errorReporter *ErrorReporter
    
    	npkgsyms    int // number of package symbols, for accounting
    	nhashedsyms int // number of hashed symbols, for accounting
    }
    
    const (
    	pkgDef = iota
    	hashed64Def
    	hashedDef
    	nonPkgDef
    	nonPkgRef
    )
    
    // objidx
    const (
    	nilObj = iota
    	extObj
    	goObjStart
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	testenv.MustHaveCGO(t)
    
    	tg := testgo(t)
    	tg.parallel()
    	tg.setenv("GODEBUG", "installgoroot=all")
    	defer tg.cleanup()
    	tg.makeTempdir()
    	pkg := tg.path(".")
    	tg.run("install", "-pkgdir", pkg, "net")
    	tg.mustExist(filepath.Join(pkg, "net.a"))
    	tg.mustNotExist(filepath.Join(pkg, "runtime/cgo.a"))
    }
    
    // For issue 14337.
    func TestParallelTest(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top