Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for portnet (0.32 sec)

  1. pkg/apis/core/v1/defaults_test.go

    	hostPortNum := s2.Containers[0].Ports[0].HostPort
    	if hostPortNum != portNum {
    		t.Errorf("Expected container port to be defaulted, was made %d instead of %d", hostPortNum, portNum)
    	}
    
    	hostPortNum = s2.InitContainers[0].Ports[0].HostPort
    	if hostPortNum != portNum {
    		t.Errorf("Expected container port to be defaulted, was made %d instead of %d", hostPortNum, portNum)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		refs = make([]*corev1.ObjectReference, len(ips))
    	}
    	var portNum int32 = 1001
    	eas := make([]corev1.EndpointAddress, 0)
    	for i, ip := range ips {
    		eas = append(eas, corev1.EndpointAddress{IP: ip, TargetRef: refs[i]})
    	}
    
    	eps := make([]corev1.EndpointPort, 0)
    	for _, name := range portNames {
    		eps = append(eps, corev1.EndpointPort{Name: name, Port: portNum})
    	}
    
    	endpoint := &corev1.Endpoints{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    			continue
    		}
    		portNum, err := strconv.Atoi(port)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to parse endpoint port", "port", port)
    			continue
    		}
    
    		newDest := &utilipvs.RealServer{
    			Address: netutils.ParseIPSloppy(ip),
    			Port:    uint16(portNum),
    			Weight:  1,
    		}
    
    		if curEndpoints.Has(ep) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_port_create port_create "libc.so"
    //go:cgo_import_dynamic libc_port_associate port_associate "libc.so"
    //go:cgo_import_dynamic libc_port_dissociate port_dissociate "libc.so"
    //go:cgo_import_dynamic libc_port_get port_get "libc.so"
    //go:cgo_import_dynamic libc_port_getn port_getn "libc.so"
    //go:cgo_import_dynamic libc_putmsg putmsg "libc.so"
    //go:cgo_import_dynamic libc_getmsg getmsg "libc.so"
    
    //go:linkname procpipe libc_pipe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      #   -rw------- 1 root root 1.3K Oct 12 00:56 kubelet.crt
      #   -rw------- 1 root root 1.7K Oct 12 00:56 kubelet.key
      # Windows:
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
    }
    
    # Creates the node PKI files in $env:PKI_DIR.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top