Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Roots (0.09 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    	drop := make(map[string]bool)
    	for _, m := range replace {
    		drop[m.Path] = true
    	}
    	var roots []module.Version
    	for _, m := range rs.rootModules {
    		if !drop[m.Path] {
    			roots = append(roots, m)
    		}
    	}
    	roots = append(roots, replace...)
    	gover.ModSort(roots)
    	return newRequirements(rs.pruning, roots, rs.direct)
    }
    
    // A ConstraintError describes inconsistent constraints in EditBuildList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    			Tags:                  tags,
    			ResolveMissingImports: true,
    			SilencePackageErrors:  true,
    		},
    		requirements: rs,
    		listRoots: func(*Requirements) (roots []string) {
    			roots = append(roots, imports...)
    			roots = append(roots, testImports...)
    			return roots
    		},
    	})
    	requirements = loaded.requirements
    
    	if !ExplicitWriteGoMod {
    		if err := commitRequirements(ctx, WriteOpts{}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    			}
    			continue
    		}
    
    		roots = append(roots, r.Mod)
    		if !r.Indirect {
    			direct[r.Mod.Path] = true
    		}
    	}
    	goVersion := gover.FromGoMod(modFile)
    	var toolchain string
    	if addToolchainRoot && modFile.Toolchain != nil {
    		toolchain = modFile.Toolchain.Name
    	}
    	roots = appendGoAndToolchainRoots(roots, goVersion, toolchain, direct)
    	return roots, direct
    }
    
    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/runtime/mgcmark.go

    	// Scan stacks.
    	//
    	// Gs may be created after this point, but it's okay that we
    	// ignore them because they begin life without any roots, so
    	// there's nothing to scan, and any roots they create during
    	// the concurrent phase will be caught by the write barrier.
    	work.stackRoots = allGsSnapshot()
    	work.nStackRoots = len(work.stackRoots)
    
    	work.markrootNext = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. tensorflow/BUILD

                # "-Wl,--undefined-version",
                # copybara:uncomment_end(google-only)
            ],
        }),
        linkstatic = 1,
        per_os_targets = True,
        roots = [
                    "//tensorflow/c/experimental/filesystem:filesystem_interface",
                    "//tensorflow/c/experimental/stream_executor:stream_executor",
                    "//tensorflow/c:env",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		t.Fatalf("failed to parse test issuer")
    	}
    	roots := x509.NewCertPool()
    	roots.AddCert(issuer)
    	clientConfig := &Config{
    		MaxVersion:         ver,
    		ClientSessionCache: NewLRUClientSessionCache(32),
    		ServerName:         "example.golang",
    		RootCAs:            roots,
    	}
    	serverConfig := testConfig.Clone()
    	serverConfig.MaxVersion = ver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    // gcphase == _GCmark.
    var gcBlackenEnabled uint32
    
    const (
    	_GCoff             = iota // GC not running; sweeping in background, write barrier disabled
    	_GCmark                   // GC marking roots and workbufs: allocate black, write barrier ENABLED
    	_GCmarktermination        // GC mark termination: allocate black, P's help GC, write barrier ENABLED
    )
    
    //go:nosplit
    func setGCPhase(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	}
    
    	// Success.
    	return objLayer, formattedDisks, nil
    }
    
    // removeRoots - Cleans up initialized directories during tests.
    func removeRoots(roots []string) {
    	for _, root := range roots {
    		os.RemoveAll(root)
    	}
    }
    
    // creates a bucket for the tests and returns the bucket name.
    // initializes the specified API endpoints for the tests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            mavenRepo.module('org.aligned', 'aligned1', '2.0').dependsOn(intermediate20).publish()
            def otherAligned = mavenRepo.module('org.aligned', 'aligned2', '2.0').publish()
    
            // Roots
            mavenRepo.module('org.test', 'excludingRoot', '1.0').dependsOn(firstAligned, exclusions: [[group: 'org.test', module: 'excluded']]).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    sub-expression trees are left alone except for their roots). This mechanism
    ensures that a client sees the actual (run-time) type an untyped value would
    have. It also permits type-checking of lhs shift operands "as if the shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top