Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 486 for LookUp (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        dns[PROXY_A_HOST] = dns.allocate(2)
        val selection = routeSelector.next()
        assertRoute(selection.next(), address, proxyA, dns.lookup(PROXY_A_HOST, 0), PROXY_A_PORT)
        assertRoute(selection.next(), address, proxyA, dns.lookup(PROXY_A_HOST, 1), PROXY_A_PORT)
        assertThat(selection.hasNext()).isFalse()
        assertThat(routeSelector.hasNext()).isFalse()
        dns.assertRequests(PROXY_A_HOST)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            expect:
            def unqualified = pluginRegistry.lookup(DefaultPluginId.of("somePlugin"))
            unqualified.pluginId == DefaultPluginId.of("org.gradle.somePlugin")
            unqualified.displayName.displayName == "plugin 'org.gradle.somePlugin'"
            unqualified.asClass() == TestPlugin1
    
            def qualified = pluginRegistry.lookup(DefaultPluginId.of("org.gradle.somePlugin"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  10. pkg/env/var.go

    // It returns the value, which will be the default if the variable is not present.
    // To distinguish between an empty value and an unset value, use Lookup.
    func (v StringVar) Get() string {
    	result, _ := v.Lookup()
    	return result
    }
    
    // Lookup retrieves the value of the environment variable. If the
    // variable is present in the environment the
    // value (which may be empty) is returned and the boolean is true.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top