Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for Bind (0.18 sec)

  1. 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)
  2. 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)
  3. pkg/scheduler/framework/interface.go

    }
    
    // BindPlugin is an interface that must be implemented by "Bind" plugins. Bind
    // plugins are used to bind a pod to a Node.
    type BindPlugin interface {
    	Plugin
    	// Bind plugins will not be called until all pre-bind plugins have completed. Each
    	// bind plugin is called in the configured order. A bind plugin may choose whether
    	// or not to handle the given Pod. If a bind plugin chooses to handle a Pod, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil_linux.go

    		klog.V(4).Infof("Directory %s is already on a shared mount", path)
    		return nil
    	}
    
    	klog.V(2).Infof("Bind-mounting %q with shared mount propagation", path)
    	// mount --bind /var/lib/kubelet /var/lib/kubelet
    	if err := syscall.Mount(path, path, "" /*fstype*/, syscall.MS_BIND, "" /*data*/); err != nil {
    		return fmt.Errorf("failed to bind-mount %s: %v", path, err)
    	}
    
    	// mount --make-rshared /var/lib/kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/DcerpcHandle.java

        }
    
    
        /**
         * Bind the handle
         * 
         * @throws DcerpcException
         * @throws IOException
         */
        public void bind () throws DcerpcException, IOException {
            synchronized ( this ) {
                try {
                    this.state = 1;
                    DcerpcMessage bind = new DcerpcBind(this.binding, this);
                    sendrecv(bind);
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K 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