Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Bind (0.16 sec)

  1. src/net/testdata/openbsd-resolv.conf

    # Generated by vio0 dhclient
    search c.symbolic-datum-552.internal.
    nameserver 169.254.169.254
    nameserver 10.240.0.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 23 02:48:43 UTC 2015
    - 133 bytes
    - Viewed (0)
  2. releasenotes/notes/pod-ip-listener.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 28178
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 240 bytes
    - Viewed (0)
  3. cmd/kubeadm/test/cmd/init_test.go

    	}{
    		{
    			name:     "fail on non-string port",
    			args:     "--apiserver-bind-port=foobar",
    			expected: false,
    		},
    		{
    			name:     "fail on too large port number",
    			args:     "--apiserver-bind-port=100000",
    			expected: false,
    		},
    		{
    			name:     "fail on negative port number",
    			args:     "--apiserver-bind-port=-6000",
    			expected: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/UnixDomainServerSocketFactory.java

        }
    
        @Override public void bind(SocketAddress endpoint, int backlog) throws IOException {
          this.endpoint = (InetSocketAddress) endpoint;
    
          UnixSocketAddress address = new UnixSocketAddress(path);
          serverSocketChannel = UnixServerSocketChannel.open();
          serverSocketChannel.configureBlocking(true);
          serverSocketChannel.socket().bind(address);
        }
    
        @Override public int getLocalPort() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 12 16:33:52 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  5. releasenotes/notes/40268.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/40268
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 08 19:15:19 UTC 2022
    - 272 bytes
    - Viewed (0)
  6. releasenotes/notes/28269.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 28269
    releaseNotes:
    - |
      **Fixed** when a node has multiple IP addresses (e.g., a VM in the mesh expansion scenario),
      Istio Proxy will now bind `inbound` listeners to the first applicable address in the list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 26 14:40:31 UTC 2020
    - 354 bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway_test.go

    			Servers: []*networking.Server{
    				{
    					Hosts: []string{host},
    					Port:  &networking.Port{Name: portName, Number: portNumber, Protocol: portProtocol},
    					Bind:  bind,
    					Tls:   &networking.ServerTLSSettings{Mode: mode},
    				},
    			},
    		},
    	}
    	return c
    }
    
    func BenchmarkParseGatewayRDSRouteName(b *testing.B) {
    	for range b.N {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_address.go

    	}
    
    	return passthroughBindIPAddresses
    }
    
    // getSidecarInboundBindIPs returns the IP that the proxy can bind to along with the sidecar specified port.
    // It looks for an unicast address, if none found, then the default wildcard address is used.
    // This will make the inbound listener bind to instance_ip:port instead of 0.0.0.0:port where applicable.
    func getSidecarInboundBindIPs(node *model.Proxy) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

            }
            throw new DcerpcException("DCERPC transport not supported: " + url);
        }
    
        public void bind() throws DcerpcException, IOException {
    synchronized (this) {
            try {
                state = 1;
                DcerpcMessage bind = new DcerpcBind(binding, this);
                sendrecv(bind);
            } catch (IOException ioe) {
                state = 0;
                throw ioe;
            }
    }
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

            factory.wildcardBindingAddress == new InetSocketAddress(0).address
        }
    
        def "loopback is used as bind address if available"() {
            when:
            defaultAddresses()
    
            then:
            factory.localBindingAddress == ip(127, 0, 0, 1)
        }
    
        def "wildcard address is used as bind address if no loopback available"() {
            when:
            loopbackAddresses([])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top