Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for importpath (0.4 sec)

  1. doc/go_spec.html

    of that package.
    The import names an identifier (PackageName) to be used for access and an ImportPath
    that specifies the package to be imported.
    </p>
    
    <pre class="ebnf">
    ImportDecl       = "import" ( ImportSpec | "(" { ImportSpec ";" } ")" ) .
    ImportSpec       = [ "." | PackageName ] ImportPath .
    ImportPath       = string_lit .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. pkg/apis/core/validation/validation.go

    			// over-open firewalls.  Hopefully it can go away when more clouds
    			// understand containers better.
    			if port.Port == ports.KubeletPort {
    				portPath := specPath.Child("ports").Index(ix)
    				allErrs = append(allErrs, field.Invalid(portPath, port.Port, fmt.Sprintf("may not expose port %v externally since it is used by kubelet", ports.KubeletPort)))
    			}
    		}
    		if isHeadlessService(service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top