Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for lmhosts (0.12 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// also be an IP address.
    	//
    	// Please note that using `localhost` or `127.0.0.1` as a `host` is
    	// risky unless you take great care to run this webhook on all hosts
    	// which run an apiserver which might need to make calls to this
    	// webhook. Such installs are likely to be non-portable, i.e., not easy
    	// to turn up in a new cluster.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    					if cidr.Contains(proxier.nodeIP) {
    						allowFromNode = true
    					}
    				}
    				// generally, ip route rule was added to intercept request to loadbalancer vip from the
    				// loadbalancer's backend hosts. In this case, request will not hit the loadbalancer but loop back directly.
    				// Need to add the following rule to allow request on host.
    				if allowFromNode {
    					entry = &utilipset.Entry{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    				Address: addr,
    				Labels:  labels,
    				Ports: map[string]uint32{
    					"http": 8081, // we will override the SE http port
    				},
    			})
    		}
    	}
    
    	return &v1alpha3.ServiceEntry{
    		Hosts:     []string{host},
    		Addresses: addresses,
    		Ports: []*v1alpha3.ServicePort{
    			{
    				Name:       "http",
    				Number:     80,
    				TargetPort: 8080,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // bidirectional communication between a hypervisor and its guest virtual
    // machines.
    type SockaddrVM struct {
    	// CID and Port specify a context ID and port address for a VM socket.
    	// Guests have a unique CID, and hosts may have a well-known CID of:
    	//  - VMADDR_CID_HYPERVISOR: refers to the hypervisor process.
    	//  - VMADDR_CID_LOCAL: refers to local communication (loopback).
    	//  - VMADDR_CID_HOST: refers to other processes on the host.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. src/os/os_test.go

    		return &sysDir{
    			runtime.GOROOT(),
    			[]string{
    				"go.env",
    				"LICENSE",
    				"CONTRIBUTING.md",
    			},
    		}
    	}
    	return &sysDir{
    		"/etc",
    		[]string{
    			"group",
    			"hosts",
    			"passwd",
    		},
    	}
    }()
    
    func size(name string, t *testing.T) int64 {
    	file, err := Open(name)
    	if err != nil {
    		t.Fatal("open failed:", err)
    	}
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top