Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for hostImports (0.41 sec)

  1. src/cmd/link/internal/wasm/asm.go

    				if lsym, ok := ldr.WasmImportSym(fn); ok {
    					wi := readWasmImport(ldr, lsym)
    					hostImportMap[fn] = int64(len(hostImports))
    					hostImports = append(hostImports, &wasmFunc{
    						Module: wi.Module,
    						Name:   wi.Name,
    						Type: lookupType(&wasmFuncType{
    							Params:  fieldsToTypes(wi.Params),
    							Results: fieldsToTypes(wi.Results),
    						}, &types),
    					})
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. pkg/kubelet/lifecycle/predicate_test.go

    		})
    	}
    	return &v1.Pod{
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    }
    
    func newPodWithPort(hostPorts ...int) *v1.Pod {
    	networkPorts := []v1.ContainerPort{}
    	for _, port := range hostPorts {
    		networkPorts = append(networkPorts, v1.ContainerPort{HostPort: int32(port)})
    	}
    	return &v1.Pod{
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
      // +optional
      optional bool hostNetwork = 6;
    
      // hostPorts determines which host port ranges are allowed to be exposed.
      // +optional
      repeated HostPortRange hostPorts = 7;
    
      // hostPID determines if the policy allows the use of HostPID in the pod spec.
      // +optional
      optional bool hostPID = 8;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pkg/api/pod/warnings.go

    					} else if a, b := port.HostIP == "", other.port.HostIP == ""; port.HostPort == other.port.HostPort && ((a || b) && !(a && b)) {
    						// If the HostPorts are the same and either HostIP is not specified while the other is not, the behavior is undefined.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        done
      else
        "${KUBE_ROOT}/cluster/kube-up.sh"
      fi
    
      # Open up port 80 & 8080 so common containers on minions can be reached
      # TODO(roberthbailey): Remove this once we are no longer relying on hostPorts.
      local start
      start=$(date +%s)
      gcloud compute firewall-rules create \
        --project "${NETWORK_PROJECT}" \
        --target-tags "${NODE_TAG}" \
        --allow tcp:80,tcp:8080 \
    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. CHANGELOG/CHANGELOG-1.20.md

    - In dual-stack clusters, kubelet will now set up both IPv4 and IPv6 iptables rules, which may
      fix some problems, eg with HostPorts. ([#94474](https://github.com/kubernetes/kubernetes/pull/94474), [@danwinship](https://github.com/danwinship)) [SIG Network and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.9.md

        *   Adds IPv6 support for kube-dns using SRV records.
        *   Caveats
            *   Only the CNI bridge and local-ipam plugins have been tested for the alpha release, although other CNI plugins do support IPv6.
            *   HostPorts are not supported.
    *   An IPv6 network mask for pod or cluster cidr network must be /66 or longer. For example: 2001:db1::/66, 2001:dead:beef::/76, 2001:cafe::/118 are supported. 2001:db1::/64 is not supported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top