Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,216 for LookUp (0.14 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

    public interface Lookup extends Service {
        /**
         * Performs a lookup for given typed component.
         *
         * @param type The component type.
         * @return The component.
         * @param <T> The component type.
         * @throws LookupException if no such component or there is some provisioning related issue.
         */
        @Nonnull
        <T> T lookup(Class<T> type);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/os/user/lookup.go

    	}
    	u := *cache.u // copy
    	return &u, nil
    }
    
    // cache of the current user
    var cache struct {
    	sync.Once
    	u   *User
    	err error
    }
    
    // Lookup looks up a user by username. If the user cannot be found, the
    // returned error is of type [UnknownUserError].
    func Lookup(username string) (*User, error) {
    	if u, err := Current(); err == nil && u.Username == username {
    		return u, err
    	}
    	return lookupUser(username)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/go/types/lookup.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/lookup.go
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements various field and method lookup functions.
    
    package types
    
    import (
    	"bytes"
    	"go/token"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/lookup.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements various field and method lookup functions.
    
    package types2
    
    import (
    	"bytes"
    	"cmd/compile/internal/syntax"
    )
    
    // Internal use of LookupFieldOrMethod: If the obj result is a method
    // associated with a concrete (non-interface) type, the method's signature
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/net/lookup.go

    	}
    	return ret, nil
    }
    
    // onlyValuesCtx is a context that uses an underlying context
    // for value lookup if the underlying context hasn't yet expired.
    type onlyValuesCtx struct {
    	context.Context
    	lookupValues context.Context
    }
    
    var _ context.Context = (*onlyValuesCtx)(nil)
    
    // Value performs a lookup if the original context hasn't expired.
    func (ovc *onlyValuesCtx) Value(key any) any {
    	select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    Jonathan Amsterdam <******@****.***> 1700059801 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. docs/federation/lookup/bucket-lookup.png

    bucket-lookup.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 08 17:22:01 UTC 2018
    - 36.1K bytes
    - Viewed (0)
  8. releasenotes/notes/fix-peer-veth-lookup-on-openshift.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 17:04:00 UTC 2023
    - 202 bytes
    - Viewed (0)
  9. src/go/importer/importer.go

    // will attempt to resolve imports in the $GOPATH workspace.
    func ForCompiler(fset *token.FileSet, compiler string, lookup Lookup) types.Importer {
    	switch compiler {
    	case "gc":
    		return &gcimports{
    			fset:     fset,
    			packages: make(map[string]*types.Package),
    			lookup:   lookup,
    		}
    
    	case "gccgo":
    		var inst gccgoimporter.GccgoInstallation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/sym_test.go

    	)
    
    	data := []*types.Sym{
    		abc.Lookup("b"),
    		local.Lookup("B"),
    		local.Lookup("C"),
    		uvw.Lookup("c"),
    		local.Lookup("C"),
    		gr.Lookup("φ"),
    		local.Lookup("Φ"),
    		xyz.Lookup("b"),
    		abc.Lookup("a"),
    		local.Lookup("B"),
    	}
    	want := []*types.Sym{
    		local.Lookup("B"),
    		local.Lookup("B"),
    		local.Lookup("C"),
    		local.Lookup("C"),
    		local.Lookup("Φ"),
    		abc.Lookup("a"),
    		abc.Lookup("b"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 20:30:31 UTC 2019
    - 1.2K bytes
    - Viewed (0)
Back to top