Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 410 for serviceFor (0.13 sec)

  1. pkg/controller/endpoint/endpoints_controller_test.go

    					Ports:    []v1.ServicePort{{Port: 80}},
    					Type:     v1.ServiceTypeExternalName,
    				},
    			},
    		},
    		{
    			desc: "External name with ports should not receive endpoints",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: serviceName, Namespace: namespace},
    				Spec: v1.ServiceSpec{
    					Ports: []v1.ServicePort{{Port: 80}},
    					Type:  v1.ServiceTypeExternalName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-valid1"},
    				},
    			},
    			valid:   true,
    			warning: true,
    		},
    		{
    			name: "workload selector without labels",
    			in: &networking.ServiceEntry{
    				Hosts: []string{"google.com"},
    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-valid1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    				if named, f := svc.PortNames[int32(port.ServicePort)]; f {
    					// get port name or target port
    					tv, ok := p.Ports[named.PortName]
    					if ok {
    						// if we match one, override it. Otherwise, use the service port
    						targetPort = tv
    					} else if targetPort == 0 {
    						targetPort = port.ServicePort
    					}
    				}
    			}
    			pl.Ports = append(pl.Ports, &workloadapi.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/IO.kt

    package org.gradle.kotlin.dsl.concurrent
    
    import org.gradle.api.Project
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    
    import org.gradle.kotlin.dsl.support.serviceOf
    import org.gradle.kotlin.dsl.support.useToRun
    
    import java.io.File
    
    
    /**
     * A scheduler of IO actions.
     */
    interface IO {
    
        /**
         * Schedules the given [io action][action] for execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    				Count:   10,
    				Address: svcName,
    				Port:    echo.Port{ServicePort: ports.TCP.ServicePort, Protocol: protocol.TCP},
    				Check: check.And(
    					check.OK(),
    					ConsistentHostChecker,
    				),
    			}
    			if c.Config().WorkloadClass() == echo.Proxyless {
    				callOpts.Port = echo.Port{ServicePort: ports.GRPC.ServicePort, Protocol: protocol.GRPC}
    			}
    			// Setup tests for various forms of the API
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

                - test-egress
              port: 80
          route:
            - destination:
                host: "{{ .To.ClusterLocalFQDN }}"
                port:
                  number: {{ (.To.PortForName "http").ServicePort }}
              weight: 100
          headers:
            request:
              add:
                x-egress-test: "handled-by-egress-gateway"
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    							service.Hostname, servicePort.Port, node.ID)
    						continue
    					}
    
    					if conflictWithReservedListener(node, push, bind.Primary(), servicePort.Port, servicePort.Protocol) {
    						log.Debugf("buildSidecarOutboundListeners: skipping service port %s:%d for node %s as it conflicts with static listener",
    							service.Hostname, servicePort.Port, node.ID)
    						continue
    					}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tests/integration/telemetry/policy/helper_test.go

    					Name:         "http",
    					Protocol:     protocol.HTTP,
    					ServicePort:  80,
    					WorkloadPort: 8080,
    				},
    				{
    					// HTTPS port, will match no listeners and fall through
    					Name:         "https",
    					Protocol:     protocol.HTTPS,
    					ServicePort:  443,
    					WorkloadPort: 8443,
    					TLS:          true,
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt

    import org.gradle.build.event.BuildEventsListenerRegistry
    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.support.serviceOf
    
    /**
     * In build-logic and main build, register a BuildService instance separately,
     * which collects necessary information for build scan.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. build-logic/lifecycle/src/main/kotlin/gradlebuild.teamcity-import-test-data.gradle.kts

     * limitations under the License.
     */
    import gradlebuild.basics.BuildEnvironment.isTeamCityParallelTestsEnabled
    import gradlebuild.basics.repoRoot
    import org.gradle.kotlin.dsl.support.serviceOf
    import org.gradle.tooling.events.FinishEvent
    import org.gradle.tooling.events.OperationCompletionListener
    import org.gradle.tooling.events.task.TaskFinishEvent
    import org.gradle.tooling.events.task.TaskSuccessResult
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 09:11:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top