Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for serviceregistry (1.9 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

                return serviceRegistry.get(Instantiator.class);
            }
    
            @Hidden
            @Model
            ModelSchemaStore schemaStore(ServiceRegistry serviceRegistry) {
                return serviceRegistry.get(ModelSchemaStore.class);
            }
    
            @Hidden
            @Model
            ManagedProxyFactory proxyFactory(ServiceRegistry serviceRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestBuildHTTPRoutes(t *testing.T) {
    	serviceRegistry := map[host.Name]*model.Service{
    		"*.example.org": {
    			Hostname:       "*.example.org",
    			DefaultAddress: "1.1.1.1",
    			Ports: model.PortList{
    				&model.Port{
    					Name:     "default",
    					Port:     8080,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

        private static ServiceProvider toParentServices(ServiceRegistry serviceRegistry) {
            if (serviceRegistry instanceof ContainsServices) {
                return new ParentServices(((ContainsServices) serviceRegistry).asProvider());
            }
            throw new IllegalArgumentException(String.format("Service registry %s cannot be used as a parent for another service registry.", serviceRegistry));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    			node, virtualService, serviceRegistry, hashByDestination, listenPort, push.Mesh, mostSpecificWildcardVsIndex,
    		)
    		out = append(out, wrappers...)
    	}
    
    	// Now exclude the services that have virtual services.
    	for _, wrapper := range out {
    		for _, service := range wrapper.Services {
    			delete(serviceRegistry, service.Hostname)
    		}
    	}
    
    	for _, svc := range serviceRegistry {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    				Name:            "foo",
    				Namespace:       "ns1",
    				ServiceRegistry: provider.Kubernetes,
    			},
    		},
    		{
    			Hostname: "foobar.svc.cluster.local",
    			Ports:    port8000,
    			Attributes: ServiceAttributes{
    				Name:            "foo",
    				Namespace:       "ns2",
    				ServiceRegistry: provider.Kubernetes,
    			},
    		},
    		{
    			Hostname: "foobar.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    	svc := buildServiceWithPort("test.com", 9999, protocol.TCP, tnow)
    	svc.Attributes.ServiceRegistry = provider.Kubernetes
    
    	autoSvc := buildServiceWithPort("test.com", 9999, protocol.Unsupported, tnow)
    	autoSvc.Attributes.ServiceRegistry = provider.External
    
    	extSvc := buildServiceWithPort("example1.com", 9999, protocol.TCP, tnow)
    	extSvc.Attributes.ServiceRegistry = provider.External
    
    	tests := []struct {
    		name        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	labelutil "istio.io/istio/pilot/pkg/serviceregistry/util/label"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    	}
    	svc4 := &Service{
    		Hostname: "svc4",
    		Attributes: ServiceAttributes{
    			Namespace:       "test4",
    			ServiceRegistry: provider.External,
    		},
    	}
    	svc4_1 := &Service{
    		Hostname: "svc4",
    		Attributes: ServiceAttributes{
    			Namespace:       "test4",
    			ServiceRegistry: provider.External,
    		},
    	}
    	// kubernetes service will override non kubernetes
    	svc4_2 := &Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/model/status"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	kubecontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	"istio.io/istio/pilot/pkg/serviceregistry/serviceentry"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	xds "istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top