Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,563 for service2 (0.23 sec)

  1. pilot/pkg/config/kube/ingress/testdata/overlay.yaml

              - backend:
                  service:
                    name: service1
                    port:
                      number: 4200
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: foo2
      namespace: ns
    spec:
      rules:
        - host: foohost.bar.com
          http:
            paths:
              - path: /second
                backend:
                  service:
                    name: service2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 596 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            then:
            ServiceImpl.instances.empty
    
            when:
            def service = provider.get()
    
            then:
            service instanceof ServiceImpl
            ServiceImpl.instances == [service]
    
            when:
            def service2 = provider.get()
    
            then:
            service2.is(service)
            ServiceImpl.instances == [service]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/testdata/overlay.yaml.golden

      hosts:
      - foohost.bar.com
      http:
      - match:
        - uri:
            exact: /second
        route:
        - destination:
            host: service2.ns.svc.mydomain
            port:
              number: 4200
          weight: 100
      - route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4200
          weight: 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. istioctl/pkg/validate/validate_test.go

    metadata:
      resourceVersion: ""`
    	udpService = `
    kind: Service
    metadata:
      name: hello
    spec:
      ports:
        -
          protocol: udp`
    	skippedService = `
    kind: Service
    metadata:
      name: hello
      namespace: istio-system
    spec:
      ports:
        -
          name: http
          port: 9080`
    	validPortNamingSvc = `
    apiVersion: v1
    kind: Service
    metadata:
      name: hello
    spec:
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

      }
    
      private static void assertState(
          ServiceManager manager, Service.State state, Service... services) {
        Collection<Service> managerServices = manager.servicesByState().get(state);
        for (Service service : services) {
          assertEquals(service.toString(), state, service.state());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

      }
    
      private static void assertState(
          ServiceManager manager, Service.State state, Service... services) {
        Collection<Service> managerServices = manager.servicesByState().get(state);
        for (Service service : services) {
          assertEquals(service.toString(), state, service.state());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            then:
            output.count("service:") == 6
            outputContains("service: created with value = 5")
            outputContains("service: created with value = 15")
            outputContains("service: value is 6")
            outputContains("service: value is 16")
            outputContains("service: closed with value 6")
            outputContains("service: closed with value 16")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    			}}
    		}),
    	)
    	fp.syncProxyRules()
    
    	// check ipvs service and destinations
    	services, err := ipvs.GetVirtualServers()
    	if err != nil {
    		t.Errorf("Failed to get ipvs services, err: %v", err)
    	}
    	if len(services) != 2 {
    		t.Errorf("Expect 2 ipvs services, got %d", len(services))
    	}
    	found := false
    	for _, svc := range services {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/service-no-port-name.yaml"},
    		analyzer:   &service.PortNameAnalyzer{},
    		expected: []message{
    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace1/my-service1"},
    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace1/my-service1"},
    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace2/my-service2"},
    		},
    	},
    	{
    		name:       "namedPort",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    	}
    }
    
    func TestPrintServiceLoadBalancer(t *testing.T) {
    	tests := []struct {
    		service  api.Service
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		// Test load balancer service with multiple external IP's
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service1"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.2.3.4"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top