Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,029 for addUses (0.13 sec)

  1. pkg/bootstrap/testdata/xdsproxy_golden.json

              "path": "/dev/null"
            }
          }
        ],
        "profile_path": "/var/lib/istio/data/envoy.prof",
        "address": {
          "socket_address": {
            "address": "127.0.0.1",
            "port_value": 15000
          }
        }
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/all_golden.json

                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "accesslog-service", "port_value": 15000}
                    }
                  }
                }]
              }]
            }
          }
          
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
                "address": "0.0.0.0",
                
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "accesslog-service", "port_value": 15000}
                    }
                  }
                }]
              }]
            }
          }
          
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
                "address": "0.0.0.0",
                
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "accesslog-service", "port_value": 15000}
                    }
                  }
                }]
              }]
            }
          }
          
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
                "address": "0.0.0.0",
                
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top