Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 485 for PORT (0.06 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.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
    - 37.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.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
    - 37.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top