Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 463 for PORT (0.03 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml

                  path: pathValue
                  port: portValue
                  scheme: schemeValue
                sleep:
                  seconds: 1
                tcpSocket:
                  host: hostValue
                  port: portValue
            livenessProbe:
              exec:
                command:
                - commandValue
              failureThreshold: 6
              grpc:
                port: 1
                service: serviceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml

                  path: pathValue
                  port: portValue
                  scheme: schemeValue
                sleep:
                  seconds: 1
                tcpSocket:
                  host: hostValue
                  port: portValue
            livenessProbe:
              exec:
                command:
                - commandValue
              failureThreshold: 6
              grpc:
                port: 1
                service: serviceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.DaemonSet.yaml

                  path: pathValue
                  port: portValue
                  scheme: schemeValue
                sleep:
                  seconds: 1
                tcpSocket:
                  host: hostValue
                  port: portValue
            livenessProbe:
              exec:
                command:
                - commandValue
              failureThreshold: 6
              grpc:
                port: 1
                service: serviceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			// endpoint port will first use the port defined in wle with same port name,
    			// if not port name not match, use the targetPort specified in ServiceEntry
    			// if both not matched, fallback to ServiceEntry port number.
    			var targetPort uint32
    			if port, ok := workloadInstance.PortMap[serviceEntryPort.Name]; ok && port > 0 {
    				targetPort = port
    			} else if serviceEntryPort.TargetPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml

                        value: valueValue
                      path: pathValue
                      port: portValue
                      scheme: schemeValue
                    sleep:
                      seconds: 1
                    tcpSocket:
                      host: hostValue
                      port: portValue
                  preStop:
                    exec:
                      command:
                      - commandValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

                  path: pathValue
                  port: portValue
                  scheme: schemeValue
                sleep:
                  seconds: 1
                tcpSocket:
                  host: hostValue
                  port: portValue
            livenessProbe:
              exec:
                command:
                - commandValue
              failureThreshold: 6
              grpc:
                port: 1
                service: serviceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/context_test.go

    	}
    	if port := model.ParsePort("127.0.0.1"); port != 0 {
    		t.Errorf("ParsePort(127.0.0.1) => Got %d, want 0", port)
    	}
    	if port := model.ParsePort("[::1]:3000"); port != 3000 {
    		t.Errorf("ParsePort([::1]:3000) => Got %d, want 3000", port)
    	}
    	if port := model.ParsePort("::1"); port != 0 {
    		t.Errorf("ParsePort(::1) => Got %d, want 0", port)
    	}
    	if port := model.ParsePort("[2001:4860:0:2001::68]:3000"); port != 3000 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    	}
    	return nil, false
    }
    
    // GetByPort retrieves a port declaration by port value
    func (ports PortList) GetByPort(num int) (*Port, bool) {
    	for _, port := range ports {
    		if port.Port == num && port.Protocol != protocol.UDP {
    			return port, true
    		}
    	}
    	return nil, false
    }
    
    func (p *Port) Equals(other *Port) bool {
    	if p == nil {
    		return other == nil
    	}
    	if other == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    // if port is unset.
    func appendDomainPort(domains []string, domain string, port int) []string {
    	if port == portNoAppendPortSuffix {
    		return append(domains, util.IPv6Compliant(domain))
    	}
    	return append(domains, util.IPv6Compliant(domain), util.DomainName(domain, port))
    }
    
    // GenerateAltVirtualHosts given a service and a port, generates all possible HTTP Host headers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter_test.go

    			})
    
    			fcc := inboundChainConfig{
    				telemetryMetadata: telemetry.FilterChainMetadata{InstanceHostname: "v0.default.example.org"},
    				clusterName:       "inbound|8888||",
    				port: model.ServiceInstancePort{
    					ServicePort: &model.Port{},
    				},
    			}
    
    			listenerFilters := NewListenerBuilder(cg.SetupProxy(nil), cg.PushContext()).buildInboundNetworkFilters(fcc)
    			tcp := &tcp.TcpProxy{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top