Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 124 for EndpointPort (0.35 sec)

  1. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *EndpointPort) Reset()      { *m = EndpointPort{} }
    func (*EndpointPort) ProtoMessage() {}
    func (*EndpointPort) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{45}
    }
    func (m *EndpointPort) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *EndpointPort) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		cg := NewConfigGenTest(t, o)
    		p := getProxy()
    		for _, s := range o.Services {
    			i := &model.ServiceInstance{
    				Service: s,
    				Endpoint: &model.IstioEndpoint{
    					Address:      "1.1.1.1",
    					EndpointPort: uint32(s.Ports[0].Port),
    				},
    				ServicePort: s.Ports[0],
    			}
    			cg.MemRegistry.AddInstance(i)
    		}
    		listeners := cg.Listeners(cg.SetupProxy(p))
    		xdstest.ValidateListeners(t, listeners)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      optional string nodeName = 4;
    
      // Reference to object providing the endpoint.
      // +optional
      optional ObjectReference targetRef = 2;
    }
    
    // EndpointPort is a tuple that describes a single port.
    // +structType=atomic
    message EndpointPort {
      // The name of this port.  This must match the 'name' field in the
      // corresponding ServicePort.
      // Must be a DNS_LABEL.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (EndpointAddress) SwaggerDoc() map[string]string {
    	return map_EndpointAddress
    }
    
    var map_EndpointPort = map[string]string{
    	"":            "EndpointPort is a tuple that describes a single port.",
    	"name":        "The name of this port.  This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.4", "unnamed"),
    			},
    			[]api.EndpointPort{
    				epstest.MakeEndpointPort("", 80),
    			}),
    		epstest.MakeEndpoints("unnamed2",
    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.5", "unnamed"),
    			},
    			[]api.EndpointPort{
    				epstest.MakeEndpointPort("", 80),
    			}),
    		epstest.MakeEndpoints("named",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// Reference to object providing the endpoint.
    	// +optional
    	TargetRef *ObjectReference `json:"targetRef,omitempty" protobuf:"bytes,2,opt,name=targetRef"`
    }
    
    // EndpointPort is a tuple that describes a single port.
    // +structType=atomic
    type EndpointPort struct {
    	// The name of this port.  This must match the 'name' field in the
    	// corresponding ServicePort.
    	// Must be a DNS_LABEL.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    				}
    			}
    		}
    	}
    
    	ret := strings.Join(list, ",")
    	if more {
    		return fmt.Sprintf("%s + %d more...", ret, count-max)
    	}
    	return ret
    }
    
    func formatDiscoveryPorts(ports []discovery.EndpointPort) string {
    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for _, port := range ports {
    		if len(list) < max {
    			portNum := "*"
    			if port.Port != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/core/v1.EndpointPort"),
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/core/v1.EndpointAddress", "k8s.io/api/core/v1.EndpointPort"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            }
          },
          "required": [
            "ip"
          ],
          "type": "object",
          "x-kubernetes-map-type": "atomic"
        },
        "io.k8s.api.core.v1.EndpointPort": {
          "description": "EndpointPort is a tuple that describes a single port.",
          "properties": {
            "appProtocol": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath, ipAddress, "may not be in the link-local multicast range (224.0.0.0/24, ff02::/10)"))
    	}
    	return allErrs
    }
    
    func validateEndpointPort(port *core.EndpointPort, requireName bool, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if requireName && len(port.Name) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("name"), ""))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
Back to top