Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,316 for addUses (0.52 sec)

  1. pkg/bootstrap/testdata/running_golden.json

                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "localhost", "port_value": 6000}
                    }
                  }
                }]
              }]
            }
          }
          
          
        ],
        "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
    - 14K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    	s.assertEvent(t, s.podXdsName("pod1"))
    
    	// lookup by address should return the pod's address info (ignore the workload entry with similar address)
    	assert.Equal(t, s.lookup(s.addrXdsName("140.140.0.10")), []model.AddressInfo{{
    		Address: &workloadapi.Address{
    			Type: &workloadapi.Address_Workload{
    				Workload: &workloadapi.Workload{
    					Uid:               s.podXdsName("pod1"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/MessagingClient.java

     */
    @ServiceScope(Scope.Global.class)
    public interface MessagingClient {
        /**
         * Creates a connection to the given address. Blocks until the connection has been established.
         *
         * @param address The address to connect to.
         */
        ObjectConnection getConnection(Address address);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/netlink_linux.go

    	}
    	if err := h.AddrAdd(dev, &netlink.Addr{IPNet: netlink.NewIPNet(addr)}); err != nil {
    		// "EEXIST" will be returned if the address is already bound to device
    		if err == unix.EEXIST {
    			return true, nil
    		}
    		return false, fmt.Errorf("error bind address: %s to interface: %s, err: %v", address, devName, err)
    	}
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 30 16:18:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        InetAddress address = InetAddress.getByName("255.255.255.254");
        assertFalse(InetAddresses.isMaximum(address));
    
        address = InetAddress.getByName("255.255.255.255");
        assertTrue(InetAddresses.isMaximum(address));
    
        address = InetAddress.getByName("ffff:ffff:ffff:ffff:ffff:ffff:ffff:fffe");
        assertFalse(InetAddresses.isMaximum(address));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

    syntax = "proto3";
    
    package istio.workload;
    option go_package="pkg/workloadapi";
    
    // Address represents a unique address.
    //
    // Address joins two sub-resources, Workload and Service, to support querying by IP address.
    // Address is intended to be able to be looked up on-demand, allowing a client
    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/TestValueFactory.kt

          proxySelector = proxySelector,
        )
      }
    
      fun newRoute(
        address: Address = newAddress(),
        proxy: Proxy = this.proxy,
        socketAddress: InetSocketAddress = InetSocketAddress.createUnresolved(uriHost, uriPort),
      ): Route {
        return Route(
          address = address,
          proxy = proxy,
          socketAddress = socketAddress,
        )
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/stats_inclusion_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
    - 15.8K bytes
    - Viewed (0)
  9. pilot/pkg/util/network/ip.go

    }
    
    // ResolveAddr resolves an authority address to an IP address. Incoming
    // addr can be an IP address or hostname. If addr is an IPv6 address, the IP
    // part must be enclosed in square brackets.
    //
    // LookupIPAddr() may return multiple IP addresses, of which this function returns
    // the first IPv4 entry. To use this function in an IPv6 only environment, either
    // provide an IPv6 address or ensure the hostname resolves to only IPv6 addresses.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

                return out;
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void remove(final Address address) {
            lock.lock();
            try {
                LOGGER.debug("Removing daemon address: {}", address);
                cache.update(new ObjectHolder.UpdateAction<DaemonRegistryContent>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top