Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for light (0.13 sec)

  1. src/runtime/mgcpacer.go

    	// mark assists. The scheduler will aim to use within 50% of this
    	// goal.
    	//
    	// As a general rule, there's little reason to set gcBackgroundUtilization
    	// < gcGoalUtilization. One reason might be in mostly idle applications,
    	// where goroutines are unlikely to assist at all, so the actual
    	// utilization will be lower than the goal. But this is moot point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    		// then we can omit them from the restore input. However, we have to still
    		// figure out how many chains we _would_ have written, to make the metrics
    		// come out right, so we just compute them and throw them away.
    		if tryPartialSync && !serviceUpdateResult.UpdatedServices.Has(svcName.NamespacedName) && !endpointUpdateResult.UpdatedServices.Has(svcName.NamespacedName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		ssagen.AddAux(&fromAddr, v)
    
    		genAddr := false
    
    		switch fromAddr.Name {
    		case obj.NAME_EXTERN, obj.NAME_STATIC:
    			// Special case for a rule combines the bytes of gostring.
    			// The v alignment might seem OK, but we don't want to load it
    			// using an offset because relocation comes later.
    			genAddr = strings.HasPrefix(fromAddr.Sym.Name, "go:string") || v.Type.Alignment()%4 != 0 || fromAddr.Offset%4 != 0
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    	var t0 time.Time
    	t1 := t0.Add(time.Minute)
    
    	cases := []struct {
    		name   string
    		left   *PushRequest
    		right  *PushRequest
    		merged PushRequest
    	}{
    		{
    			"left nil",
    			nil,
    			&PushRequest{Full: true},
    			PushRequest{Full: true},
    		},
    		{
    			"right nil",
    			&PushRequest{Full: true},
    			nil,
    			PushRequest{Full: true},
    		},
    		{
    			"simple merge",
    			&PushRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		jm.deletePod(logger, curPod, false)
    		return
    	}
    
    	// Don't check if oldPod has the finalizer, as during ownership transfer
    	// finalizers might be re-added and removed again in behalf of the new owner.
    	// If all those Pod updates collapse into a single event, the finalizer
    	// might be removed in oldPod and curPod. We want to record the latest
    	// state.
    	finalizerRemoved := !hasJobTrackingFinalizer(curPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    		b++
    	}
    }
    
    func induceSubS_8_64(text []byte, sa, freq, bucket []int64) {
    	// Initialize positions for right side of character buckets.
    	bucketMax_8_64(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    	// Analogous to induceSubL_8_64 above,
    	// as we scan the array right-to-left, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type S.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	metrics.SyncProxyRulesLastTimestamp.SetToCurrentTime()
    
    	// Update service healthchecks.  The endpoints list might include services that are
    	// not "OnlyLocal", but the services list will not, and the serviceHealthServer
    	// will just drop those endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    		listener.Close()
    
    		// We're looking for a timeout during the handshake, so check that the
    		// Listener actually accepted the connection to initiate it. (If the server
    		// takes too long to accept the connection, we might cancel before the
    		// underlying net.Conn is ever dialed — without ever attempting a
    		// handshake.)
    		lconn, ok := <-acceptc
    		if ok {
    			// The Listener accepted a connection, so assume that it was from our
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    	//      first reMatchCheck matches "-`ADD`"
    	//	`(?:" starts a non-capturing group
    	//	"\s*,\s*` matches " , "
    	//	second reMatchCheck matches "`SUB`"
    	//	")*)" closes started groups; "*" means that there might be other elements in the comma-separated list
    	rxAsmPlatform = regexp.MustCompile(`(\w+)(/[\w.]+)?(/\w*)?\s*:\s*(` + reMatchCheck + `(?:\s*,\s*` + reMatchCheck + `)*)`)
    
    	// Regexp to extract a single opcoded check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    		})
    	}
    
    }
    
    func statusEqual(left, right v1.PodStatus) bool {
    	left.Conditions = nil
    	right.Conditions = nil
    	return reflect.DeepEqual(left, right)
    }
    
    func conditionsEqual(left, right []v1.PodCondition) bool {
    	if len(left) != len(right) {
    		return false
    	}
    
    	for _, l := range left {
    		found := false
    		for _, r := range right {
    			if l.Type == r.Type {
    				found = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top