Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for pkgdep (0.15 sec)

  1. src/cmd/go/internal/work/action.go

    			// on the command line?
    			pkgDir := a1.Deps[0].Package.Internal.Build.PkgTargetRoot
    			for _, a2 := range a1.Deps {
    				if dir := a2.Package.Internal.Build.PkgTargetRoot; dir != pkgDir {
    					base.Fatalf("installing shared library: cannot use packages %s and %s from different roots %s and %s",
    						a1.Deps[0].Package.ImportPath,
    						a2.Package.ImportPath,
    						pkgDir,
    						dir)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/scan.go

    // encoded representation. It returns ErrNotIndexed if the package can't
    // be indexed.
    func indexPackage(modroot, pkgdir string) []byte {
    	fsys.Trace("indexPackage", pkgdir)
    	p := importRaw(modroot, relPath(pkgdir, modroot))
    	return encodePackageBytes(p)
    }
    
    // rawPackage holds the information from each package that's needed to
    // fill a build.Package once the context is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/apis.go

    		return fmt.Errorf("program not built with -cover")
    	}
    	if !finalHashComputed {
    		return fmt.Errorf("meta-data not written yet, unable to write counter data")
    	}
    
    	pm := rtcov.Meta.PkgMap
    	s := &emitState{
    		counterlist: cl,
    		pkgmap:      pm,
    	}
    	return s.emitCounterDataToWriter(w)
    }
    
    // ClearCounters implements [runtime/coverage.ClearCounters].
    func ClearCounters() error {
    	cl := getCovCounterList()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              function override_core_limits() {
                while ! pgrep -u istio-proxy envoy; do
                  echo "Envoy isn't running yet, trying again..."
                  pgrep -u istio-proxy envoy
                  sleep .1
                done
                pid="$(pgrep -u istio-proxy envoy)"
                sudo prlimit -p "${pid}" --core=unlimited
              }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. cmd/import-boss/main.go

    		}
    	}
    	return false
    }
    
    func (boss *ImportBoss) Verify(pkg *packages.Package) []error {
    	pkgDir := packageDir(pkg)
    	if pkgDir == "" {
    		// This Package has no usable files, e.g. only tests, which are modelled in
    		// a distinct Package.
    		return nil
    	}
    
    	restrictionFiles, err := recursiveRead(filepath.Join(pkgDir, rulesFileName))
    	if err != nil {
    		return []error{fmt.Errorf("error finding rules file: %w", err)}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. common/scripts/gobuild.sh

    fi
    
    time GOOS=${BUILD_GOOS} GOARCH=${BUILD_GOARCH} ${GOBINARY} build \
            ${V} "${GOBUILDFLAGS_ARRAY[@]}" ${GCFLAGS:+-gcflags "${GCFLAGS}"} \
            -o "${OUT}" \
            "${OPTIMIZATION_FLAGS[@]}" \
            -pkgdir="${GOPKG}/${BUILD_GOOS}_${BUILD_GOARCH}" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 14:08:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. buildscripts/verify-healing.sh

    	fi
    
    	if ! pkill minio; then
    		for i in $(seq 1 3); do
    			echo "server$i log:"
    			cat "${WORK_DIR}/dist-minio-server$i.log"
    		done
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	sleep 1
    	if pgrep minio; then
    		# forcibly killing, to proceed further properly.
    		if ! pkill -9 minio; then
    			echo "no minio process running anymore, proceed."
    		fi
    	fi
    }
    
    function check_heal() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/covdata/testdata/dep.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dep
    
    func Dep1() int {
    	return 42
    }
    
    func PDep(x int) {
    	if x != 1010101 {
    		println(x)
    	} else {
    		panic("bad")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 286 bytes
    - Viewed (0)
  9. src/cmd/covdata/testdata/prog1.go

    //go:noinline
    func third(x int) int {
    	if x != 0 {
    		return 42
    	}
    	println("blarg")
    	return 0
    }
    
    //go:noinline
    func fourth() int {
    	return 99
    }
    
    func main() {
    	println(dep.Dep1())
    	dep.PDep(2)
    	if len(os.Args) > 1 {
    		second()
    		third(1)
    	} else if len(os.Args) > 2 {
    		fourth()
    	} else {
    		first()
    		third(0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 616 bytes
    - Viewed (0)
  10. src/cmd/go/internal/list/list.go

    					}
    				}
    				testPackages = append(testPackages, testPackageSet{p, pmain, ptest, pxtest})
    			}
    		}
    		wg.Wait()
    		for _, pkgset := range testPackages {
    			p, pmain, ptest, pxtest := pkgset.p, pkgset.pmain, pkgset.ptest, pkgset.pxtest
    			if pmain != nil {
    				pkgs = append(pkgs, pmain)
    				data := *pmain.Internal.TestmainGo
    				sema.Acquire(ctx, 1)
    				wg.Add(1)
    				go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top