Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 790 for addUses (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/Address.kt

     * explicitly requested), this also includes that proxy information. For secure connections the
     * address also includes the SSL socket factory, hostname verifier, and certificate pinner.
     *
     * HTTP requests that share the same [Address] may also share the same [Connection].
     */
    class Address(
      uriHost: String,
      uriPort: Int,
      /** Returns the service that will be used to resolve IP addresses for hostnames. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/compileGoodCode/src/main/groovy/Address.groovy

    import com.google.common.base.Strings
    
    class Address {
        String street
    
        String getNonNullStreet() {
            Strings.nullToEmpty(street)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 150 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/lif/address.go

    import (
    	"errors"
    	"syscall"
    	"unsafe"
    )
    
    // An Addr represents an address associated with packet routing.
    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // An Inet4Addr represents an internet address for IPv4.
    type Inet4Addr struct {
    	IP        [4]byte // IP address
    	PrefixLen int     // address prefix length
    }
    
    // Family implements the Family method of Addr interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/Address.java

     * limitations under the License.
     */
    package org.gradle.internal.remote;
    
    import java.io.Serializable;
    
    /**
     * The address for a communication endpoint. Addresses are immutable.
     */
    public interface Address extends Serializable {
        /**
         * Returns the display name for this address. Implementations should also override toString() to return the display name.
         *
         * @return The display name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1022 bytes
    - Viewed (0)
  5. releasenotes/notes/istioctl-additional-address.yaml

    jacob-delgado <******@****.***> 1683307446 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 05 17:24:06 UTC 2023
    - 196 bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/EmbeddedDaemonRegistrySpec.groovy

            when:
            markState(address(20), Busy)
    
            then:
            all.size() == 2
            idle.empty
            notIdle.size() == 2
    
            when:
            markState(address(10), Idle)
            markState(address(20), Idle)
    
            then:
            all.size() == 2
            idle.size() == 2
            notIdle.empty
    
            when:
            remove(address(10))
            remove(address(20))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/util/ipvs_test.go

    		equal  bool
    		reason string
    	}{
    		{
    			rsA: &RealServer{
    				Address: netutils.ParseIPSloppy("10.20.30.40"),
    				Port:    80,
    			},
    			rsB: &RealServer{
    				Address: netutils.ParseIPSloppy("10.20.30.41"),
    				Port:    80,
    			},
    			equal:  false,
    			reason: "IPv4 address not equal",
    		},
    		{
    			rsA: &RealServer{
    				Address: netutils.ParseIPSloppy("2012::beef"),
    				Port:    80,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pkg/util/node/node_test.go

    		},
    		{
    			name: "dual-stack node",
    			addresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "1.2.3.4"},
    				{Type: v1.NodeExternalIP, Address: "4.3.2.1"},
    				{Type: v1.NodeExternalIP, Address: "4.3.2.2"},
    				{Type: v1.NodeInternalIP, Address: "a:b::c:d"},
    				{Type: v1.NodeExternalIP, Address: "d:c::b:a"},
    			},
    			expectIPs: []net.IP{netutils.ParseIPSloppy("1.2.3.4"), netutils.ParseIPSloppy("a:b::c:d")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonInfo.java

        private final Address address;
        private final DaemonContext context;
        private final byte[] token;
        private final Clock clock;
    
        private State state;
        private long lastBusy;
    
        public DaemonInfo(Address address, DaemonContext context, byte[] token, State state) {
            this(address, context, token, state, Time.clock());
        }
    
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryContent.java

            }
    
            private Map<Address, DaemonInfo> readInfosMap(Decoder decoder, List<Address> addresses) throws Exception {
                Map<Address, DaemonInfo> infosMap = new LinkedHashMap<Address, DaemonInfo>(addresses.size());
                DaemonInfo.Serializer daemonInfoSerializer = new DaemonInfo.Serializer(addresses);
                for (Address address : addresses) {
                    infosMap.put(address, daemonInfoSerializer.read(decoder));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top