Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,871 for addUses (0.22 sec)

  1. src/net/ip.go

    	"internal/stringslite"
    	"net/netip"
    )
    
    // IP address lengths (bytes).
    const (
    	IPv4len = 4
    	IPv6len = 16
    )
    
    // An IP is a single IP address, a slice of bytes.
    // Functions in this package accept either 4-byte (IPv4)
    // or 16-byte (IPv6) slices as input.
    //
    // Note that in this documentation, referring to an
    // IP address as an IPv4 address or an IPv6 address
    // is a semantic property of the address, not just the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/reloctype.go

    	// R_ARM64_LDST8 sets a LD/ST immediate value to bits [11:0] of a local address.
    	R_ARM64_LDST8
    
    	// R_ARM64_LDST16 sets a LD/ST immediate value to bits [11:1] of a local address.
    	R_ARM64_LDST16
    
    	// R_ARM64_LDST32 sets a LD/ST immediate value to bits [11:2] of a local address.
    	R_ARM64_LDST32
    
    	// R_ARM64_LDST64 sets a LD/ST immediate value to bits [11:3] of a local address.
    	R_ARM64_LDST64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/MultiChoiceAddressTest.groovy

            InetAddress candidate = InetAddress.getByName("1.1.1.1")
            UUID uuid = UUID.randomUUID()
            def address = new MultiChoiceAddress(uuid, 1234, [candidate])
    
            expect:
            address.displayName == "[${uuid} port:1234, addresses:[/1.1.1.1]]"
            address.toString() == address.displayName
        }
    
        def "addresses are equal when their canonical id and port and candidate addresses are equal"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/net/ipsock.go

    }
    
    // ipv4only reports whether addr is an IPv4 address.
    func ipv4only(addr IPAddr) bool {
    	return addr.IP.To4() != nil
    }
    
    // ipv6only reports whether addr is an IPv6 address except IPv4-mapped IPv6 address.
    func ipv6only(addr IPAddr) bool {
    	return len(addr.IP) == IPv6len && addr.IP.To4() == nil
    }
    
    // SplitHostPort splits a network address of the form "host:port",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/net/ipsock_posix.go

    	// specify "any available address" on some operations
    	// of IP node.
    	//
    	// When the IP node supports IPv4-mapped IPv6 address,
    	// we allow a listener to listen to the wildcard
    	// address of both IP addressing spaces by specifying
    	// IPv6 wildcard address.
    	if len(ip) == 0 || ip.Equal(IPv4zero) {
    		ip = IPv6zero
    	}
    	// We accept any IPv6 address including IPv4-mapped
    	// IPv6 address.
    	ip6 := ip.To16()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters_test.go

    			{
    				LbEps: []xdstest.LbEpInfo{
    					// 3 local endpoints on network1
    					{Address: "10.0.0.1", Weight: 6},
    					{Address: "10.0.0.2", Weight: 6},
    					{Address: "10.0.0.3", Weight: 6},
    					// 1 endpoint on network2, cluster2a
    					{Address: "2.2.2.2", Weight: 6},
    					// 2 endpoints on network2, cluster2b
    					{Address: "2.2.2.20", Weight: 6},
    					{Address: "2.2.2.21", Weight: 6},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. src/runtime/mranges.go

    	// [base, limit). That is, base is inclusive, limit is exclusive.
    	// These are address over an offset view of the address space on
    	// platforms with a segmented address space, that is, on platforms
    	// where arenaBaseOffset != 0.
    	base, limit offAddr
    }
    
    // makeAddrRange creates a new address range from two virtual addresses.
    //
    // Throws if the base and limit are not in the same memory segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

        }
    
        def "wildcard address is used as bind address if no loopback available"() {
            when:
            loopbackAddresses([])
            remoteAddresses([ip(192, 168, 18, 256)])
    
            then:
            factory.localBindingAddress == new InetSocketAddress(0).address
        }
    
        def "Always returns some communication address"() {
            expect:
            !new InetAddressFactory().communicationAddresses.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        }
      }
    
      /** Open connections to [address], if required by the address policy. */
      fun scheduleOpener(address: Address) {
        addressStates[address]?.scheduleOpener()
      }
    
      fun scheduleCloser() {
        cleanupQueue.schedule(cleanupTask)
      }
    
      /**
       * Ensure enough connections open to [address] to satisfy its [ConnectionPool.AddressPolicy].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/endpointshards_test.go

    			name:      "added new sa",
    			shardKey:  c1Key,
    			endpoints: append(cluster1Endppoints, &IstioEndpoint{Address: "10.172.0.3", ServiceAccount: "sa2"}),
    			expect:    true,
    		},
    		{
    			name:     "updated endpoints address",
    			shardKey: c1Key,
    			endpoints: []*IstioEndpoint{
    				{Address: "10.172.0.5", ServiceAccount: "sa1"},
    				{Address: "10.172.0.2", ServiceAccount: "sa-vm1"},
    			},
    			expect: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 15:48:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top