Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for npidle (0.12 sec)

  1. src/runtime/proc.go

    		timerpMask.clear(pp.id)
    	}
    	idlepMask.set(pp.id)
    	pp.link = sched.pidle
    	sched.pidle.set(pp)
    	sched.npidle.Add(1)
    	if !pp.limiterEvent.start(limiterEventIdle, now) {
    		throw("must be able to track idle limiter event")
    	}
    	return now
    }
    
    // pidleget tries to get a p from the _Pidle list, acquiring ownership.
    //
    // sched.lock must be held.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	pollUntil atomic.Int64 // time to which current poll is sleeping
    
    	lock mutex
    
    	// When increasing nmidle, nmidlelocked, nmsys, or nmfreed, be
    	// sure to call checkdead().
    
    	midle        muintptr // idle m's waiting for work
    	nmidle       int32    // number of idle m's waiting for work
    	nmidlelocked int32    // number of locked m's waiting for work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    //
    //go:nowritebarrier
    func (c *gcControllerState) enlistWorker() {
    	// If there are idle Ps, wake one so it will run an idle worker.
    	// NOTE: This is suspected of causing deadlocks. See golang.org/issue/19112.
    	//
    	//	if sched.npidle.Load() != 0 && sched.nmspinning.Load() == 0 {
    	//		wakep()
    	//		return
    	//	}
    
    	// There are no idle Ps. If we need more dedicated workers,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/fi/stopwords.txt

    sille
    sinä
    siksi
    nämä
    näiden
    näitä
    näissä
    näistä
    näihin
    näillä
    näiltä
    näille
    näinä
    näiksi
    nuo
    noiden
    noita
    noissa
    noista
    noihin
    noilla
    noilta
    noille
    noina
    noiksi
    ne
    niiden
    niitä
    niissä
    niistä
    niihin
    niillä
    niiltä
    niille
    niinä
    niiksi
    kuka
    kenen
    kenet
    ketä
    kenessä
    kenestä
    keneen
    kenellä
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation_test.go

    			if !hasError(errs, needle) {
    				t.Errorf("missing %q in\n%v", needle, errorsAsString(errs))
    			}
    			needle = `status.conditions[0].observedGeneration: Invalid value: -1: must be greater than or equal to zero`
    			if !hasError(errs, needle) {
    				t.Errorf("missing %q in\n%v", needle, errorsAsString(errs))
    			}
    			needle = `status.conditions[0].lastTransitionTime: Required value: must be set`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/config.go

    // matching the needle and it's value, or false if no element in the maps matches the needle.
    func MostSpecificHostMatch[V any](needle host.Name, specific map[host.Name]V, wildcard map[host.Name]V) (host.Name, V, bool) {
    	if needle.IsWildCarded() {
    		// exact match first
    		if v, ok := wildcard[needle]; ok {
    			return needle, v, true
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/slices/sort_benchmark_test.go

    			floats := make([]float64, size)
    			for i := range floats {
    				floats[i] = float64(i)
    			}
    			midpoint := len(floats) / 2
    			needle := (floats[midpoint] + floats[midpoint+1]) / 2
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				slices.BinarySearch(floats, needle)
    			}
    		})
    	}
    }
    
    type myStruct struct {
    	a, b, c, d string
    	n          int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/config_test.go

    			} else {
    				specific.Insert(h)
    			}
    		}
    
    		t.Run(fmt.Sprintf("[%d] %s", idx, tt.needle), func(t *testing.T) {
    			actual, value, found := model.MostSpecificHostMatch(tt.needle, specific, wildcard)
    			if tt.want != "" && !found {
    				t.Fatalf("model.MostSpecificHostMatch(%q, %v) = %v, %v, %t; want: %v", tt.needle, tt.in, actual, value, found, tt.want)
    			} else if actual != tt.want {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers.go

    func CRDHasFinalizer(crd *CustomResourceDefinition, needle string) bool {
    	for _, finalizer := range crd.Finalizers {
    		if finalizer == needle {
    			return true
    		}
    	}
    
    	return false
    }
    
    // CRDRemoveFinalizer removes the finalizer if present.
    func CRDRemoveFinalizer(crd *CustomResourceDefinition, needle string) {
    	newFinalizers := []string{}
    	for _, finalizer := range crd.Finalizers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 27 10:54:44 UTC 2019
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/no-restraint.go

    	return noRestraint{}
    }
    
    func (noRestraint) BeginConfigChange(qCfg fq.QueuingConfig) (fq.QueueSetCompleter, error) {
    	return noRestraintCompleter{}, nil
    }
    
    func (noRestraint) IsIdle() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top