Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for LookUp (0.14 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    var _ SchedulingQueue = &PriorityQueue{}
    
    // newQueuedPodInfoForLookup builds a QueuedPodInfo object for a lookup in the queue.
    func newQueuedPodInfoForLookup(pod *v1.Pod, plugins ...string) *framework.QueuedPodInfo {
    	// Since this is only used for a lookup in the queue, we only need to set the Pod,
    	// and so we avoid creating a full PodInfo, which is expensive to instantiate frequently.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message GroupKind {
      optional string group = 1;
    
      optional string kind = 2;
    }
    
    // GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    	o(OP_MFLR_R0) // mflr r0
    	o(0xf801ffe1) // stdu r0, -32(r1)
    
    	// Get the moduledata pointer from GOT and put into R3.
    	var tgt loader.Sym
    	if s := ldr.Lookup("local.moduledata", 0); s != 0 {
    		tgt = s
    	} else if s := ldr.Lookup("local.pluginmoduledata", 0); s != 0 {
    		tgt = s
    	} else {
    		tgt = ldr.LookupOrCreateSym("runtime.firstmoduledata", 0)
    	}
    
    	if !hasPCrel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            when:
            registry.getAll(Integer)
            registry.add(String, "foo")
    
            then:
            thrown IllegalStateException
        }
    
        def "cannot lookup services while closing"() {
            given:
            registry.add(Closeable, { registry.get(String) } as Closeable)
    
            when:
            registry.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    	s, _ := NewKubeControllerManagerOptions()
    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	fgFlagName := "feature-gates"
    	fg := fs.Lookup(fgFlagName)
    	if fg == nil {
    		t.Fatalf("didn't find %q flag", fgFlagName)
    	}
    
    	expectedWatchListClientString := "WatchListClient=true|false (BETA - default=false)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/tables9.0.0.go

    	"stSTSt\x12\x12stSTSt\x14$մնՄՆՄն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄ" +
    	"ԽՄխ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 92.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/tables10.0.0.go

    	"stSTSt\x12\x12stSTSt\x14$մնՄՆՄն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄ" +
    	"ԽՄխ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/tables11.0.0.go

    	"ն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄԽՄխ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 97.5K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    							if !c.allow {
    								wantCode = http.StatusForbidden
    								body = "RBAC: access denied"
    							}
    
    							opts := echo.CallOptions{
    								// Use a fake IP address to bypass DNS lookup (which will fail). The host
    								// header will be used for routing decisions.
    								Address: "10.4.4.4",
    								Port: echo.Port{
    									Name:        ports.HTTP.Name,
    									Protocol:    protocol.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    
    	// Second, update using the outdated originalPod as the suggestion. Return a conflict error when
    	// passed originalPod, and make sure that SimpleUpdate is called a second time after a live lookup
    	// with the value of updatedPod.
    	sawConflict := false
    	updatedPod2 := &example.Pod{}
    	err = store.GuaranteedUpdate(ctx, key, updatedPod2, false, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top