Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 556 for LookUp (0.09 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistry.java

         * @return The service instance. Never returns null.
         * @throws UnknownServiceException When there is no service of the given type available.
         * @throws ServiceLookupException On failure to lookup the specified service.
         */
        @UsedByScanPlugin("scan, test-retry")
        <T> T get(Class<T> serviceType) throws UnknownServiceException, ServiceLookupException;
    
        /**
         * Locates all services of the given type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        private final Lookup lookup;
    
        private final DefaultLifecycles defaultLifeCycles;
    
        @Inject
        public DefaultLifecyclePluginAnalyzer(Lookup lookup, DefaultLifecycles defaultLifeCycles) {
            this.lookup = requireNonNull(lookup);
            this.defaultLifeCycles = requireNonNull(defaultLifeCycles);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. maven-compat/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)
  10. tensorflow/compiler/jit/device_compilation_cache_test.cc

      cache->Store(key2, DeviceCompileState::kCompiling, absl::OkStatus(),
                   std::move(compilation_result2), std::move(executable2));
      auto cache_value_1 = cache->Lookup(key1);
      auto cache_value_2 = cache->Lookup(key2);
    
      EXPECT_EQ(cache_value_1->compile_state, DeviceCompileState::kCompiled);
      EXPECT_EQ(cache_value_1->compilation_status.code(), error::INVALID_ARGUMENT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top