Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for LookUp (0.14 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    			if p.To.Type != obj.TYPE_REG {
    				ctxt.Diag("non-retpoline-compatible: %v", p)
    				continue
    			}
    			p.To.Type = obj.TYPE_BRANCH
    			p.To.Name = obj.NAME_EXTERN
    			p.To.Sym = ctxt.Lookup("runtime.retpoline" + obj.Rconv(int(p.To.Reg)))
    			p.To.Reg = 0
    			p.To.Offset = 0
    		}
    	}
    
    	var count int64 // rough count of number of instructions
    	for p := s.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    		SessionToken: stsCred.SessionToken,
    		ParentUser:   stsCred.ParentUser,
    		Status:       auth.AccountOn,
    	}
    
    	// Extract the username and lookup DN and groups in LDAP.
    	ldapUser, isLDAPSTS := claims.Lookup(ldapUserN)
    	if isLDAPSTS {
    		// Need to lookup the groups from LDAP.
    		_, ldapGroups, err := globalIAMSys.LDAPConfig.LookupUserDN(ldapUser)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (!lookup_attr || !value_attr) {
        return {};
      }
    
      // Hybrid lookup is not supported.
      if (value_attr.getType().getElementType() != getType().getElementType()) {
        return {};
      }
    
      // Expect 1d lookup tensor and a non-scalar input.
      if (lookup_attr.getType().getRank() != 1 ||
          value_attr.getType().getRank() == 0) {
        return {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	ctx := context.WithValue(context.Background(), nettrace.LookupIPAltResolverKey{}, func(ctx context.Context, network, host string) ([]net.IPAddr, error) {
    		if host != "dns-is-faked.golang" {
    			t.Errorf("unexpected DNS host lookup for %q/%q", network, host)
    			return nil, nil
    		}
    		return []net.IPAddr{{IP: net.ParseIP(ip)}}, nil
    	})
    
    	body := "some body"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

         DynamicRangeQuantizedOpInterface,
         QuantizableResult
        ]> {
      let summary = "Embedding lookup operator";
    
      let description = [{
        Looks up ids in a list of embedding tensors.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[I32]>:$lookup,
        TFL_TensorOf<[F32, I8, UI8]>:$value
       );
    
      let results = (outs TFL_TensorOf<[F32, I8, UI8]>:$output);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			},
    			fetchKeysFromRemote: true,
    			wantHealthErrPrefix: `oidc: authenticator for issuer "https://this-will-not-work.notatld" is not healthy: Get "https://this-will-not-work.notatld/.well-known/openid-configuration": dial tcp: lookup this-will-not-work.notatld`,
    		},
    		{
    			name: "accounts.google.com issuer",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			}
    			milestones = nil
    			registry.Decorator = tc.decorator
    			ttlFailDone = false
    			registry.TTLFunc = tc.ttl
    			// force storage to use a cached object with a non-matching resourceVersion to guarantee a live lookup + retry
    			created.(*example.Pod).ResourceVersion += "0"
    			registry.Storage.Storage = &staleGuaranteedUpdateStorage{Interface: registry.Storage.Storage, cachedObj: created}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    				"kernelVersion", kernelVersion, "feature", features.UserNamespacesSupport, "minKernelVersion", utilkernel.UserNamespacesSupportKernelVersion)
    		}
    	}
    
    	_, err := user.Lookup(kubeletUser)
    	if err != nil {
    		var unknownUserErr user.UnknownUserError
    		if goerrors.As(err, &unknownUserErr) {
    			// if the user is not found, we assume that the user is not configured
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	for i := 0; i < n; i++ {
    		_, err := b.WriteRune(c)
    		if err != nil {
    			panic(err)
    		}
    	}
    	return b.String()
    }
    
    func setDefaultVerbosity(v int) {
    	f := flag.CommandLine.Lookup("v")
    	_ = f.Value.Set(fmt.Sprintf("%d", v))
    }
    
    func BenchmarkCELValidationWithContext(b *testing.B) {
    	items := make([]interface{}, 1000)
    	for i := int64(0); i < 1000; i++ {
    		items[i] = i
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    				t.Fatalf("Expected PodIPs %#v, got %#v", tc.expectedIPs, podIPs)
    			}
    		})
    	}
    }
    
    // func init() {
    // 	klog.InitFlags(flag.CommandLine)
    // 	flag.CommandLine.Lookup("v").Value.Set("5")
    // }
    
    func TestConvertToAPIContainerStatusesDataRace(t *testing.T) {
    	pod := podWithUIDNameNs("12345", "test-pod", "test-namespace")
    
    	testTimestamp := time.Unix(123456789, 987654321)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top