Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 928 for addUses (0.72 sec)

  1. pkg/bootstrap/testdata/metrics_no_statsd_golden.json

                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "metrics-service", "port_value": 15000}
                    }
                  }
                }]
              }]
            }
          }
          
          
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/ipallocator.go

    	}
    	addr, err := netip.ParseAddr(ip.String())
    	if err != nil {
    		return err
    	}
    
    	// check address is within the range of available addresses
    	if addr.Less(a.firstAddress) || // requested address is lower than the first address in the subnet
    		a.lastAddress.Less(addr) { // the last address in the subnet is lower than the requested address
    		if !dryRun {
    			// update metrics
    			a.metrics.incrementAllocationErrors(a.metricLabel, "static")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. src/net/udpsock.go

    }
    
    // ResolveUDPAddr returns an address of UDP end point.
    //
    // The network must be a UDP network name.
    //
    // If the host in the address parameter is not a literal IP address or
    // the port is not a literal port number, ResolveUDPAddr resolves the
    // address to an address of UDP end point.
    // Otherwise, it parses the address as a pair of literal IP address
    // and port number.
    // The address parameter can use a host name, but this is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. pkg/util/iptree/iptree.go

    		n = t.rootV6
    	}
    	bitPosition := 0
    	// mask the address for sanity
    	address := prefix.Masked().Addr()
    	// we can't check longer than the request mask
    	mask := prefix.Bits()
    	// walk the network bits of the prefix
    	for bitPosition < mask {
    		// Look for a child checking the bit position after the mask
    		n = n.child[getBitFromAddr(address, bitPosition+1)]
    		if n == nil {
    			return zeroT, false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. pkg/api/service/warnings_test.go

    				},
    			},
    			want: []string{
    				`spec.clusterIPs[0]: IPv6 address "2001:db8:0:0::2" is not in RFC 5952 canonical format ("2001:db8::2"), which may cause controller apply-loops`,
    				`spec.clusterIPs[1]: IP address was accepted, but will be invalid in a future Kubernetes release: ParseAddr("192.012.2.2"): IPv4 field has octet with leading zero`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_none_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)
  7. pkg/bootstrap/testdata/tracing_opencensusagent_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: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

        // If the non-host fields of the address don't overlap, we're done.
        if (!this.route.address.equalsNonHost(address)) return false
    
        // If the host exactly matches, we're done: this connection can carry the address.
        if (address.url.host == this.route().address.url.host) {
          return true // This connection is a perfect match.
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/default_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)
  10. src/net/listen_test.go

    // listener with same address family, same listening address and
    // same port.
    func TestTCPListener(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	for _, tt := range tcpListenerTests {
    		if !testableListenArgs(tt.network, JoinHostPort(tt.address, "0"), "") {
    			t.Logf("skipping %s test", tt.network+" "+tt.address)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top