Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,148 for LookUp (0.13 sec)

  1. src/cmd/compile/internal/types2/universe.go

    	defPredeclaredTypes()
    	defPredeclaredConsts()
    	defPredeclaredNil()
    	defPredeclaredFuncs()
    
    	universeIota = Universe.Lookup("iota")
    	universeByte = Universe.Lookup("byte").Type()
    	universeRune = Universe.Lookup("rune").Type()
    	universeError = Universe.Lookup("error").Type()
    	universeComparable = Universe.Lookup("comparable")
    }
    
    // Objects with names containing blanks are internal and not entered into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/universe.go

    	defPredeclaredTypes()
    	defPredeclaredConsts()
    	defPredeclaredNil()
    	defPredeclaredFuncs()
    
    	universeIota = Universe.Lookup("iota")
    	universeByte = Universe.Lookup("byte").Type()
    	universeRune = Universe.Lookup("rune").Type()
    	universeError = Universe.Lookup("error").Type()
    	universeComparable = Universe.Lookup("comparable")
    }
    
    // Objects with names containing blanks are internal and not entered into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/test/groovy/org/gradle/plugin/use/resolve/internal/CorePluginResolverTest.groovy

            1 * pluginRegistry.lookup(DefaultPluginId.of("foo")) >> impl
        }
    
        def "can resolve qualified"() {
            when:
            def request = request("org.gradle.foo")
            def result = resolver.resolve(request)
            result.getFound(request).applyTo(pluginManager)
    
            then:
            1 * pluginManager.apply(impl)
            1 * pluginRegistry.lookup(DefaultPluginId.of("org.gradle.foo")) >> impl
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. samples/builder/docker-bake.hcl

      matrix = {
        item = images
      }
      name    = item.name
      context = "${item.source}"
      tags    = [
        for x in setproduct([HUB], item.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: Sat Mar 16 22:03:02 UTC 2024
    - 845 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                }
    
                validateOptionalProfiles(session, request.getProfileActivation());
    
                LifecycleStarter lifecycleStarter = lookup.lookupOptional(LifecycleStarter.class, request.getBuilderId())
                        .orElseGet(() -> lookup.lookup(LifecycleStarter.class));
    
                lifecycleStarter.execute(session);
    
                validateOptionalProjects(request, session);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/repo.go

    // name that can be updated as code moves from one service to another.)
    //
    // All of this is important background for the lookup APIs defined in this
    // file.
    //
    // The Lookup function takes a module path and returns a Repo representing
    // that module path. Lookup can do only a little with the path alone.
    // It can check that the path is well-formed (see semver.CheckPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/MethodHandleBasedServiceMethod.java

    class MethodHandleBasedServiceMethod extends AbstractServiceMethod {
        private final static MethodHandles.Lookup LOOKUP = MethodHandles.publicLookup();
        private final MethodHandle method;
    
        MethodHandleBasedServiceMethod(Method target) throws IllegalAccessException {
            super(target);
            this.method = LOOKUP.unreflect(target);
        }
    
        @Override
        public Object invoke(Object target, @Nullable Object... args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/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: Wed Jan 24 13:01:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/pkg.go

    }
    
    var nopkg = &Pkg{
    	Syms: make(map[string]*Sym),
    }
    
    func (pkg *Pkg) Lookup(name string) *Sym {
    	s, _ := pkg.LookupOK(name)
    	return s
    }
    
    // LookupOK looks up name in pkg and reports whether it previously existed.
    func (pkg *Pkg) LookupOK(name string) (s *Sym, existed bool) {
    	// TODO(gri) remove this check in favor of specialized lookup
    	if pkg == nil {
    		pkg = nopkg
    	}
    	if s := pkg.Syms[name]; s != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:28:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceLookup.java

         *
         * @param serviceType The service type.
         * @return The service instance. Returns {@code null} if no such service exists.
         * @throws ServiceLookupException On failure to lookup the specified service.
         */
        @Nullable
        Object find(Type serviceType) throws ServiceLookupException;
    
        /**
         * Locates the service of the given type, throwing an exception if no such service is located.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top