Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,101 for LookUp (0.09 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                def lookup = "public Provider<String> $methodName() {"
                def result = Lookup.find(lines, lookup)
                assert result.match
                if (javadoc) {
                    assert result.javadocContains(javadoc)
                }
            }
    
            void hasPlugin(String name, String methodName = "get${toJavaName(name)}", String javadoc = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    	// workload entry is included in the result until pod1 with the same address below is added
    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_HEALTHY, "name0")
    	// lookup by address should return the workload entry's address info
    	assert.Equal(t, s.lookup(s.addrXdsName("140.140.0.10")), []model.AddressInfo{{
    		Address: &workloadapi.Address{
    			Type: &workloadapi.Address_Workload{
    				Workload: &workloadapi.Workload{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/SimpleLookup.java

    import java.util.Optional;
    
    import org.apache.maven.api.services.Lookup;
    import org.apache.maven.api.services.LookupException;
    
    public class SimpleLookup implements Lookup {
        private final List<Object> objects;
    
        public SimpleLookup(List<Object> objects) {
            this.objects = objects;
        }
    
        @Override
        public <T> T lookup(Class<T> type) {
            return objects.stream()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            }
    
            public DataBlock get(K key) throws Exception {
                Lookup lookup = find(key);
                if (lookup.entry == null) {
                    return null;
                }
    
                return store.read(lookup.entry.dataBlock, DataBlock.class);
            }
    
            public Lookup find(K key) throws Exception {
                long checksum = keyHasher.getHashCode(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/symtab.go

    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.ebss", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.noptrbss", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.enoptrbss", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.covctrs", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.ecovctrs", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.end", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.gcdata", 0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/trie.go

    var (
    	nfcData  = newNfcTrie(0)
    	nfkcData = newNfkcTrie(0)
    )
    
    // lookup determines the type of block n and looks up the value for b.
    // For n < t.cutoff, the block is a simple lookup table. Otherwise, the block
    // is a list of ranges with an accompanying value. Given a matching range r,
    // the value for b is by r.value + (b - r.lo) * stride.
    func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
    	offset := t.offset[n]
    	header := t.values[offset]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

            }
    
            @Override
            public Optional<Lifecycle> lookup(String id) {
                return Optional.empty();
            }
        };
    
        private static final PackagingRegistry emptyPackagingRegistry = new PackagingRegistry() {
            @Override
            public Optional<Packaging> lookup(String id) {
                return Optional.of(new Packaging() {
                    @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

            }
    
            @Override
            public Optional<Lifecycle> lookup(String id) {
                return Optional.empty();
            }
        };
    
        private static final PackagingRegistry emptyPackagingRegistry = new PackagingRegistry() {
            @Override
            public Optional<Packaging> lookup(String id) {
                return Optional.of(new Packaging() {
                    @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/hash_table_asset_v1.py

      table_initializer = tf.lookup.TextFileInitializer(
          vocabulary_file, tf.string, tf.lookup.TextFileIndex.WHOLE_LINE, tf.int64,
          tf.lookup.TextFileIndex.LINE_NUMBER)
      # Incur another bound_input on the asset, but with a different sym_name, i.e.,
      # __tf_saved_model_asset1_tokens.txt vs. __tf_saved_model_asset0_tokens.txt.
      table = tf.lookup.StaticVocabularyTable(table_initializer, num_oov_buckets=10)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/universe.go

    	})
    
    	for _, s := range &builtinFuncs {
    		ir.NewBuiltin(types.BuiltinPkg.Lookup(s.name), s.op)
    	}
    
    	for _, s := range &unsafeFuncs {
    		ir.NewBuiltin(types.UnsafePkg.Lookup(s.name), s.op)
    	}
    
    	s := types.BuiltinPkg.Lookup("true")
    	s.Def = ir.NewConstAt(src.NoXPos, s, types.UntypedBool, constant.MakeBool(true))
    
    	s = types.BuiltinPkg.Lookup("false")
    	s.Def = ir.NewConstAt(src.NoXPos, s, types.UntypedBool, constant.MakeBool(false))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top