Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 904 for LookUp (0.21 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. 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)
  8. 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)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

                try {
                    // Lookup.defineClass can only define a class into same classloader as the lookup object.
                    // We have to use the fallback defineClass() if they're not same, which is the case of ManagedProxyClassGenerator
                    if (decoratedClass.getClassLoader() == classLoader) {
                        MethodHandles.Lookup lookup = MethodHandles.privateLookupIn(decoratedClass, baseLookup);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

          )
        }
    
        var result = cachedDns.lookup("google.com")
        assertThat(result).containsExactly(address("157.240.1.18"))
        var recordedRequest = server.takeRequest()
        assertThat(recordedRequest.method).isEqualTo("GET")
        assertThat(recordedRequest.path)
          .isEqualTo("/lookup?ct&dns=AAABAAABAAAAAAAABmdvb2dsZQNjb20AAAEAAQ")
    
        result = cachedDns.lookup("google.com")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top