Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mdeps (0.26 sec)

  1. src/cmd/go/internal/load/pkg.go

    			if p1.Module.Path != main.Path && mdeps[m] == nil {
    				mdeps[m] = debugModFromModinfo(p1.Module)
    			}
    		}
    		q = append(q, p1.Internal.Imports...)
    	}
    	sortedMods := make([]module.Version, 0, len(mdeps))
    	for mod := range mdeps {
    		sortedMods = append(sortedMods, mod)
    	}
    	gover.ModSort(sortedMods)
    	deps := make([]*debug.Module, len(sortedMods))
    	for i, mod := range sortedMods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    var VetExplicit bool
    
    func (b *Builder) vet(ctx context.Context, a *Action) error {
    	// a.Deps[0] is the build of the package being vetted.
    	// a.Deps[1] is the build of the "fmt" package.
    
    	a.Failed = false // vet of dependency may have failed but we can still succeed
    
    	if a.Deps[0].Failed {
    		// The build of the package has failed. Skip vet check.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // and the BuildID field to the build ID of the compiled package.
    //
    // The -find flag causes list to identify the named packages but not
    // resolve their dependencies: the Imports and Deps lists will be empty.
    // With the -find flag, the -deps, -test and -export commands cannot be
    // used.
    //
    // The -test flag causes list to report not only the named packages
    // but also their test binaries (for packages with tests), to convey to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass is intended to run after the split_into_island_per_op
        pass. That pass splits up multi-op islands into multiple individual islands
        wrapping a single op without applying any control deps between the new
        islands. So, this pass is needed in order to make preservation of the
        semantic ordering relationships between ops as determined by side effect
        analysis explicit in the IR.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	db.mu.Unlock()
    	return fn()
    }
    
    func (db *DB) removeDepLocked(x finalCloser, dep any) func() error {
    	xdep, ok := db.dep[x]
    	if !ok {
    		panic(fmt.Sprintf("unpaired removeDep: no deps for %T", x))
    	}
    
    	l0 := len(xdep)
    	delete(xdep, dep)
    
    	switch len(xdep) {
    	case l0:
    		// Nothing removed. Shouldn't happen.
    		panic(fmt.Sprintf("unpaired removeDep: no %T dep on %T", dep, x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    579114},{"name":"unsafe","kids":[{"name":"unsafe.go","kids":[],"cl_weight":1,"touches":1,"min_t":1258414744,"max_t":1258414744,"mean_t":1258414744}],"cl_weight":1,"touches":1,"min_t":1258414744,"max_t":1258414744,"mean_t":1258414744},{"name":"Make.deps","kids":[],"cl_weight":2.0861111111111112,"touches":11,"min_t":1254251724,"max_t":1257974497,"mean_t":1256728540},{"name":"bignum","kids":[{"name":"bignum.go","kids":[],"cl_weight":0.225,"touches":2,"min_t":1257971686,"max_t":1257974497,"mean_t":1...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    publications and our hardening guide: * https://istio.io/latest/docs/releases/supported-releases/ * https://istio.io/latest/news/security/ * https://istio.io/latest/docs/ops/best-practices/security/ For further documentation see https://istio.io website {{- $deps := dict "global.outboundTrafficPolic" "meshConfig.outboundTrafficPolic" "global.certificates" "meshConfig.certificates" "global.localityLbSetting" "meshConfig.localityLbSetting" "global.policyCheckFailOpen" "meshConfig.policyCheckFailOpen" "global.enableTracing"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top