Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for PORT (0.04 sec)

  1. pkg/kubelet/server/server_test.go

    		"0 port":                        {port: "0", shouldError: true},
    		"min port":                      {port: "1", shouldError: false},
    		"normal port":                   {port: "8000", shouldError: false},
    		"normal port with data forward": {port: "8000", clientData: "client data", containerData: "container data", shouldError: false},
    		"max port":                      {port: "65535", shouldError: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    }
    
    // IP returns just the IP part of the endpoint, it's a part of proxy.Endpoint interface.
    func (info *endpointInfo) IP() string {
    	return info.ip
    }
    
    // Port returns just the Port part of the endpoint.
    func (info *endpointInfo) Port() int {
    	return int(info.port)
    }
    
    // Uses mac prefix and IPv4 address to return a mac address
    // This ensures mac addresses are unique for proper load balancing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    	// Create new endpoints
    	for _, ep := range newEndpoints.UnsortedList() {
    		ip, port, err := net.SplitHostPort(ep)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to parse endpoint", "endpoint", ep)
    			continue
    		}
    		portNum, err := strconv.Atoi(port)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to parse endpoint port", "port", port)
    			continue
    		}
    
    		newDest := &utilipvs.RealServer{
    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. pilot/pkg/networking/core/route/route_test.go

    		Attributes: model.ServiceAttributes{Namespace: "istio-system"},
    		Ports:      []*model.Port{{Port: 8080, Protocol: "HTTP"}},
    	}
    	exampleNestedWildcardService = &model.Service{
    		Hostname:   "goodbye.hello.example.org",
    		Attributes: model.ServiceAttributes{Namespace: "istio-system"},
    		Ports:      []*model.Port{{Port: 8080, Protocol: "HTTP"}},
    	}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							XListType:    ptr("map"),
    							XListMapKeys: []string{"name", "port"},
    							Items: &apiextensionsv1.JSONSchemaPropsOrArray{
    								Schema: &apiextensionsv1.JSONSchemaProps{
    									Type:     "object",
    									Required: []string{"name", "port"},
    									Properties: map[string]apiextensionsv1.JSONSchemaProps{
    										"name":  *stringSchema,
    										"port":  *numberSchema,
    										"field": *stringSchema,
    									},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.yaml

            - "-d"
          {{- if excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello-probes.yaml.18.template.gen.yaml

            - "-d"
          {{- if excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.template.gen.yaml

            - "-d"
          {{- if excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello.yaml.17.template.gen.yaml

            - "-d"
          {{- if excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

            - "-d"
          {{- if excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
Back to top