Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for prebuilt (0.22 sec)

  1. src/cmd/dist/build.go

    func cmdbootstrap() {
    	timelog("start", "dist bootstrap")
    	defer timelog("end", "dist bootstrap")
    
    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    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/vendor/github.com/google/pprof/internal/graph/graph.go

    // identical NodeInfos. A *Node does uniquely identify a node so we can use that
    // instead. Though a *Node also uniquely identifies a node in a graph,
    // currently, during trimming, graphs are rebuilt from scratch using only the
    // NodeSet, so there would not be the required context of the initial graph to
    // allow for the use of *Node.
    type NodePtrSet map[*Node]bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

          // head of its appropriate `newTable` linked list.
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
            // Rebuild the full 32-bit hash using entry hashPrefix and oldTableIndex ("hashSuffix").
            int hash = CompactHashing.getHashPrefix(oldEntry, oldMask) | oldTableIndex;
    
            int newTableIndex = hash & newMask;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

          // head of its appropriate `newTable` linked list.
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
            // Rebuild the full 32-bit hash using entry hashPrefix and oldTableIndex ("hashSuffix").
            int hash = CompactHashing.getHashPrefix(oldEntry, oldMask) | oldTableIndex;
    
            int newTableIndex = hash & newMask;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    // Most of Pod is immutable, so once it has been created we are ok to cache the internal representation.
    // However, a few fields (labels) are mutable. When these change, we call recomputeServiceForPod and rebuild the cache
    // for all service's the pod is a part of and push an update.
    func (c *Controller) recomputeServiceForPod(pod *v1.Pod) {
    	allServices := c.services.List(pod.Namespace, klabels.Everything())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	if a1.built == a.Target {
    		a.built = a.Target
    		if !a.buggyInstall {
    			b.cleanup(a1)
    		}
    		// Whether we're smart enough to avoid a complete rebuild
    		// depends on exactly what the staleness and rebuild algorithms
    		// are, as well as potentially the state of the Go build cache.
    		// We don't really want users to be able to infer (or worse start depending on)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    			if prev, ok := previous[key]; ok && !changed.Contains(key) {
    				// Reuse the previous EnvoyFilterWrapper if it exists and hasn't changed when optimized config rebuild is enabled
    				efw = prev
    			}
    		}
    		// Rebuild the envoy filter in all other cases.
    		if efw == nil {
    			efw = convertToEnvoyFilterWrapper(&envoyFilterConfig)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    // to the report options.
    func (rpt *Report) newTrimmedGraph() (g *graph.Graph, origCount, droppedNodes, droppedEdges int) {
    	o := rpt.options
    
    	// Build a graph and refine it. On each refinement step we must rebuild the graph from the samples,
    	// as the graph itself doesn't contain enough information to preserve full precision.
    	visualMode := o.OutputFormat == Dot
    	cumSort := o.CumSort
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	ipvX_addr := "ipv4_addr" //nolint:stylecheck // var name intentionally resembles value
    	if proxier.ipFamily == v1.IPv6Protocol {
    		ipX = "ip6"
    		ipvX_addr = "ipv6_addr"
    	}
    
    	// We currently fully-rebuild our sets and maps on each resync
    	tx.Flush(&knftables.Set{
    		Name: clusterIPsSet,
    	})
    	tx.Flush(&knftables.Map{
    		Name: firewallIPsMap,
    	})
    	tx.Flush(&knftables.Map{
    		Name: noEndpointServicesMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // outside of the usual work spaces, but such programs cannot be
    // installed with "go install" (there is no work space in which to install them),
    // so they are rebuilt from scratch each time they are built.
    // To avoid ambiguity, Go programs cannot use relative import paths
    // within a work space.
    //
    // # Remote import paths
    //
    // Certain import paths also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top