Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for missingport (0.11 sec)

  1. src/net/ipsock.go

    			return addrErr(hostport, missingPort)
    		case i:
    			// The expected result.
    		default:
    			// Either ']' isn't followed by a colon, or it is
    			// followed by a colon that is not the last one.
    			if hostport[end+1] == ':' {
    				return addrErr(hostport, tooManyColons)
    			}
    			return addrErr(hostport, missingPort)
    		}
    		host = hostport[1:end]
    		j, k = 1, end+1 // there can't be a '[' resp. ']' before these positions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	emptyPod := podWithUIDNameNsSpec("2", "emptypod", "foo", emptyPodSpec)
    	missingPod := podWithUIDNameNsSpec("3", "missingpod", "foo", missingPodSpec)
    	failedPod := podWithUIDNameNsSpec("4", "failedpod", "foo", failedPodSpec)
    
    	kl.HandlePodAdditions([]*v1.Pod{fittingPod, emptyPod, missingPod, failedPod})
    
    	// Check pod status stored in the status map.
    	checkPodStatus(t, kl, fittingPod, v1.PodPending)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top