Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for hamster (0.3 sec)

  1. cmd/kubelet/app/server.go

    		// the kubeconfig file be managed by this process. For backwards compatibility with kubeadm,
    		// which provides a high powered kubeconfig on the master with cert/key data, we must
    		// bootstrap the cert manager with the contents of the initial client config.
    
    		klog.InfoS("Client rotation is on, will bootstrap in background")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return CollectCollectors.toImmutableSortedMap(
            comparator, keyFunction, valueFunction, mergeFunction);
      }
    
      /*
       * TODO(kevinb): Confirm that ImmutableSortedMap is faster to construct and
       * uses less memory than TreeMap; then say so in the class Javadoc.
       */
      private static final Comparator<?> NATURAL_ORDER = Ordering.natural();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    			// because GOMAXPROCS=2 runtime CPU usage is low,
    			// so increase maxbg to avoid slowing down execution with low CPU usage.
    			// This makes testing a single package slower,
    			// but testing multiple packages together faster.
    			if strings.Contains(w.dt.heading, "GOMAXPROCS=2 runtime") {
    				maxbg = runtime.NumCPU()
    				break
    			}
    		}
    	}
    
    	started := 0
    	ended := 0
    	var last *distTest
    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/ld/dwarf.go

    	a.Value = value
    	a.Data = data
    }
    
    // Each DIE (except the root ones) has at least 1 attribute: its
    // name. getattr moves the desired one to the front so
    // frequently searched ones are found faster.
    func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr {
    	if die.Attr.Atr == attr {
    		return die.Attr
    	}
    
    	a := die.Attr
    	b := a.Link
    	for b != nil {
    		if b.Atr == attr {
    			a.Link = b.Link
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    //     MOVQ    88(CX), DX
    //     MOVQ    DX, 8(R11)
    // dowrite:
    //     MOVQ    AX, 88(CX)
    TEXT gcWriteBarrier<>(SB),NOSPLIT,$112
    	// Save the registers clobbered by the fast path. This is slightly
    	// faster than having the caller spill these.
    	MOVQ	R12, 96(SP)
    	MOVQ	R13, 104(SP)
    retry:
    	// TODO: Consider passing g.m.p in as an argument so they can be shared
    	// across a sequence of write barriers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    	if !proxier.isInitialized() {
    		proxier.logger.V(2).Info("Not syncing iptables until Services and Endpoints have been received from master")
    		return
    	}
    
    	// The value of proxier.needFullSync may change before the defer funcs run, so
    	// we need to keep track of whether it was set at the *start* of the sync.
    	tryPartialSync := !proxier.needFullSync
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    		}
    		if dataDir != "" {
    			versionID := fi.VersionID
    			if versionID == "" {
    				versionID = nullVersionID
    			}
    
    			// PR #11758 used DataDir, preserve it
    			// for users who might have used master
    			// branch
    			xlMeta.data.remove(versionID, dataDir)
    
    			// We need to attempt delete "dataDir" on the disk
    			// due to a CopyObject() bug where it might have
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    // mark utilization of 25% of GOMAXPROCS by minimizing GC assists.
    // GOMAXPROCS. The high-level design of this algorithm is documented
    // at https://github.com/golang/proposal/blob/master/design/44167-gc-pacer-redesign.md.
    // See https://golang.org/s/go15gcpacing for additional historical context.
    var gcController gcControllerState
    
    type gcControllerState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "_FusedBatchNormEx", "FusedBatchNormGrad", "FusedBatchNormGradV2",
                "FusedBatchNormGradV3"}},
              {"Conv", {"_FusedConv2D"}},
              {"SORT", {"TopKV2"}},  // XLA version much faster then TF version.
              {"MISC",
               // clang-format off
         {"ApproxTopK", "BroadcastTo", "ExpandDims", "Fill", "NoOp",
          "Range", "Rank", "Reshape", "Shape", "ShapeN", "Size", "Squeeze",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/sync/atomic/atomic_test.go

    	}
    }
    
    // Tests of correct behavior, with contention.
    // (Is the function atomic?)
    //
    // For each function, we write a "hammer" function that repeatedly
    // uses the atomic operation to add 1 to a value. After running
    // multiple hammers in parallel, check that we end with the correct
    // total.
    // Swap can't add 1, so it uses a different scheme.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top