Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 894 for LookUp (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/snippets/multiproject/customLayout/kotlin/settings.gradle.kts

    // tag::change-project[]
    rootProject.name = "main"
    // tag::lookup-project[]
    include("project-a")
    // end::change-project[]
    println(rootProject.name)
    println(project(":project-a").name)
    // end::lookup-project[]
    
    // tag::change-project[]
    project(":project-a").projectDir = file("custom/my-project-a")
    project(":project-a").buildFileName = "project-a.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/multiproject/customLayout/groovy/settings.gradle

    // tag::change-project[]
    rootProject.name = 'main'
    // tag::lookup-project[]
    include('project-a')
    // end::change-project[]
    println rootProject.name
    println project(':project-a').name
    // end::lookup-project[]
    
    // tag::change-project[]
    project(':project-a').projectDir = file('custom/my-project-a')
    project(':project-a').buildFileName = 'project-a.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 378 bytes
    - Viewed (0)
  9. src/net/conf.go

    		// non-existent resolv.conf means "lookup" defaults
    		// to only "files", without DNS lookups.
    		if errors.Is(dnsConf.err, fs.ErrNotExist) {
    			return hostLookupFiles, dnsConf
    		}
    
    		lookup := dnsConf.lookup
    		if len(lookup) == 0 {
    			// https://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/resolv.conf.5
    			// "If the lookup keyword is not used in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/errsupport.go

    	// If selector and object are in the same package (==), export doesn't matter, otherwise (!=) it does.
    	// Messages depend on whether it's a general lookup or a field lookup in a struct literal.
    	//
    	// case           sel     pkg   have   message (examples for general lookup)
    	// ---------------------------------------------------------------------------------------------------------
    	// ok             x.Foo   ==    Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top