Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 701 for LookUp (0.29 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	}
    	a.waypoints = waypointsCollection{
    		Collection: Waypoints,
    	}
    	a.authorizationPolicies = AllPolicies
    
    	return a
    }
    
    // Lookup finds all addresses associated with a given key. Many different key formats are supported; see inline comments.
    func (a *index) Lookup(key string) []model.AddressInfo {
    	// 1. Workload UID
    	if w := a.workloads.GetKey(krt.Key[model.WorkloadInfo](key)); w != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/globalflags.go

    	register(global, local, globalName)
    	local.Lookup(normalize(globalName)).Deprecated = deprecated
    }
    
    // addCredentialProviderFlags adds flags from k8s.io/kubernetes/pkg/credentialprovider
    func addCredentialProviderFlags(fs *pflag.FlagSet) {
    	// lookup flags in global flag set and re-register the values with our flagset
    	local := pflag.NewFlagSet(os.Args[0], pflag.ExitOnError)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. internal/config/config.go

    func (kvs KVS) LookupKV(key string) (KV, bool) {
    	for _, kv := range kvs {
    		if kv.Key == key {
    			return kv, true
    		}
    	}
    	return KV{}, false
    }
    
    // Lookup - lookup a key in a list of KVS
    func (kvs KVS) Lookup(key string) (string, bool) {
    	for _, kv := range kvs {
    		if kv.Key == key {
    			return kv.Value, true
    		}
    	}
    	return "", false
    }
    
    // Config - MinIO server config structure.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            "lookup" and "output".
        """
        with session.Session(graph=ops.Graph()) as sess:
          input_vocabs_placeholder, lookup_tensor, output_tensor = (
              self._create_vocab_table_lookup_model_tf1(sess)
          )
    
          inputs = {'input_vocabs': input_vocabs_placeholder}
          outputs = {
              'lookup': lookup_tensor,
              'output': output_tensor,
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/DefaultModuleArtifactCacheTest.groovy

                assert v.cachedAt == 123
                assert v.descriptorHash == TestHashCodes.hashCodeFrom(10)
                assert v.cachedFile == testFile
            }
        }
    
        def "lookup key must not be null"() {
            when:
            index.lookup(null)
    
            then:
            def e = thrown(IllegalArgumentException)
            e.message == "key cannot be null"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. samples/bookinfo/src/docker-bake.hcl

      }
      name    = item.name
      context = "./samples/bookinfo/src/${item.source}"
      tags    = [
        for x in setproduct([HUB], "${split(",", TAGS)}") : join("/${item.name}:", x)
      ]
      args = lookup(item, "args", {})
      platforms = split(",",lookup(item, "platforms", PLATFORMS))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ExtensibleEnumRegistry.java

    import org.apache.maven.api.annotations.Nonnull;
    
    public interface ExtensibleEnumRegistry<T extends ExtensibleEnum> extends Service {
        @Nonnull
        Optional<T> lookup(@Nonnull String id);
    
        @Nonnull
        default T require(@Nonnull String id) {
            return lookup(id).orElseThrow(() -> new IllegalArgumentException("Unknown extensible enum value '" + id + "'"));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/net/conf_test.go

    				goos: "openbsd",
    			},
    			resolv: &dnsConfig{lookup: []string{"bind", "file"}},
    			hostTests: []nssHostTest{
    				{"google.com", "myhostname", hostLookupDNSFiles},
    				{"foo.local", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name: "openbsd_lookup_file_bind",
    			c: &conf{
    				goos: "openbsd",
    			},
    			resolv:    &dnsConfig{lookup: []string{"file", "bind"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/support.go

    	types.Typ[types.Float64],
    	types.Typ[types.Complex64],
    	types.Typ[types.Complex128],
    	types.Typ[types.String],
    
    	// basic type aliases
    	types.Universe.Lookup("byte").Type(),
    	types.Universe.Lookup("rune").Type(),
    
    	// error
    	types.Universe.Lookup("error").Type(),
    
    	// untyped types
    	types.Typ[types.UntypedBool],
    	types.Typ[types.UntypedInt],
    	types.Typ[types.UntypedRune],
    	types.Typ[types.UntypedFloat],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/DefaultMavenTest.java

        @Test
        void testEnsureResolverSessionHasMavenWorkspaceReader() throws Exception {
            WsrClassCatcher wsrClassCatcher =
                    (WsrClassCatcher) getContainer().lookup(AbstractMavenLifecycleParticipant.class, "WsrClassCatcher");
            Maven maven = getContainer().lookup(Maven.class);
            MavenExecutionRequest request =
                    createMavenExecutionRequest(getProject("simple")).setGoals(asList("validate"));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top