Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for addPass (0.19 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    						{
    							HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    								Endpoint: &endpoint.Endpoint{
    									Address: &core.Address{
    										Address: &core.Address_SocketAddress{
    											SocketAddress: &core.SocketAddress{
    												Address: "192.168.1.1",
    												PortSpecifier: &core.SocketAddress_PortValue{
    													PortValue: 10001,
    												},
    											},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	if ldr.SymValue(etext) == 0 {
    		// Set the address of the start/end symbols, if not already
    		// (i.e. not darwin+dynlink or AIX+external, see above).
    		ldr.SetSymValue(etext, int64(va))
    		ldr.SetSymValue(text, int64(Segtext.Sections[0].Vaddr))
    	}
    }
    
    // assigns address for a text symbol, returns (possibly new) section, its number, and the address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    					continue
    				}
    				if !netutil.IsValidIPAddress(endpoint.Address) {
    					if err := agent.ValidateFQDN(endpoint.Address); err != nil { // Otherwise could be an FQDN
    						errs = AppendValidation(errs,
    							fmt.Errorf("endpoint address %q is not a valid FQDN or an IP address", endpoint.Address))
    					}
    				}
    				errs = AppendValidation(errs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "Multiple single-stack addresses in dual-stack cluster",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "10.0.0.2"},
    				{Type: v1.NodeExternalIP, Address: "192.168.0.1"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      local ret=""
    
      if [[ "${enable_ip_alias}" == 'true' ]]; then
        ret="--network-interface"
        ret="${ret} network=${networkURL}"
        if [[ "${address:-}" == "no-address" ]]; then
          ret="${ret},no-address"
        else
          ret="${ret},address=${address:-}"
        fi
        ret="${ret},subnet=${subnetURL}"
        ret="${ret},aliases=pods-default:${alias_size}"
        ret="${ret} --no-can-ip-forward"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			for _, cluster := range clusters {
    				g.Expect(cluster.UpstreamBindConfig.SourceAddress.Address).To(Equal(c.expectedSrcAddr))
    				if c.expectedExtraSrcAddr != "" {
    					g.Expect(len(cluster.UpstreamBindConfig.ExtraSourceAddresses)).To(Equal(1))
    					g.Expect(cluster.UpstreamBindConfig.ExtraSourceAddresses[0].Address.Address).To(Equal(c.expectedExtraSrcAddr))
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	for _, address := range node.Status.Addresses {
    		if address.Type == api.NodeExternalIP {
    			return address.Address
    		}
    	}
    
    	return "<none>"
    }
    
    // Returns the internal IP of the node or "<none>" if none is found.
    func getNodeInternalIP(node *api.Node) string {
    	for _, address := range node.Status.Addresses {
    		if address.Type == api.NodeInternalIP {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo3"},
    				Status: api.NodeStatus{Addresses: []api.NodeAddress{
    					{Type: api.NodeExternalIP, Address: "2.2.2.2"},
    					{Type: api.NodeInternalIP, Address: "3.3.3.3"},
    					{Type: api.NodeExternalIP, Address: "4.4.4.4"},
    				}},
    			},
    			expected: []metav1.TableRow{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func VirtualAlloc(address uintptr, size uintptr, alloctype uint32, protect uint32) (value uintptr, err error) {
    	r0, _, e1 := syscall.Syscall6(procVirtualAlloc.Addr(), 4, uintptr(address), uintptr(size), uintptr(alloctype), uintptr(protect), 0, 0)
    	value = uintptr(r0)
    	if value == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func VirtualFree(address uintptr, size uintptr, freetype uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. src/net/http/server.go

    // The zero value for Server is a valid configuration.
    type Server struct {
    	// Addr optionally specifies the TCP address for the server to listen on,
    	// in the form "host:port". If empty, ":http" (port 80) is used.
    	// The service names are defined in RFC 6335 and assigned by IANA.
    	// See net.Dial for details of the address format.
    	Addr string
    
    	Handler Handler // handler to invoke, http.DefaultServeMux if nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top