Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for serviceInstances (0.31 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            assertMutable();
            ownServices.add(new FixedInstanceService(this, serviceType, serviceInstance));
            return this;
        }
    
        /**
         * Adds a service instance to this registry. The given object is closed when this registry is closed.
         */
        public DefaultServiceRegistry add(Object serviceInstance) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_test.go

    		buildServiceWithPort("test2.com", 81, protocol.Unsupported, tnow),
    		buildServiceWithPort("test3.com", 82, protocol.TCP, tnow),
    	}
    	instances := make([]*model.ServiceInstance, 0, len(services))
    	for _, s := range services {
    		instances = append(instances, &model.ServiceInstance{
    			Service: s,
    			Endpoint: &model.IstioEndpoint{
    				EndpointPort: uint32(s.Ports[0].Port),
    				Address:      "1.1.1.1",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/fuzz_test.go

    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func FuzzDeepCopyService(f *testing.F) {
    	fuzzDeepCopy[*Service](f)
    }
    
    func FuzzDeepCopyServiceInstance(f *testing.F) {
    	fuzzDeepCopy[*ServiceInstance](f)
    }
    
    func FuzzDeepCopyWorkloadInstance(f *testing.F) {
    	fuzzDeepCopy[*WorkloadInstance](f)
    }
    
    func FuzzDeepCopyIstioEndpoint(f *testing.F) {
    	fuzzDeepCopy[*IstioEndpoint](f)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 17:36:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    		}
    		for _, si := range instances {
    			if si.Service == nil {
    				return fmt.Errorf("proxy ServiceInstance has nil service")
    			}
    			if _, found := expectedHosts[si.Service.Hostname]; !found {
    				return fmt.Errorf("found proxy ServiceInstance for unexpected host: %s", si.Service.Hostname)
    			}
    			delete(expectedHosts, si.Service.Hostname)
    		}
    
    		if len(expectedHosts) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ProjectRegistrySpec.groovy

            return NODE_INITIALIZER_REGISTRY
        }
    
        protected <T> void registerService(String path, Class<T> type, T instance) {
            registry.register(ModelRegistrations.serviceInstance(ModelReference.of(path, type), instance).descriptor("register service '$path'").build())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    	tests := []struct {
    		name                      string
    		instances                 []*model.ServiceInstance
    		services                  []*model.Service
    		numListenersOnServicePort int
    	}{
    		{
    			name: "gen a listener per IP instance",
    			instances: []*model.ServiceInstance{
    				// This instance is the proxy itself, will not gen a outbound listener for it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/validation.go

    				fmt.Errorf("invalid service port value %d for %q: %v", port.Port, port.Name, err))
    		}
    	}
    	return errs
    }
    
    // Validate ensures that the service instance is well-defined
    func (instance *ServiceInstance) Validate() error {
    	var errs error
    	if instance.Service == nil {
    		errs = multierror.Append(errs, fmt.Errorf("missing service in the instance"))
    	} else if err := instance.Service.Validate(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    			// Setup a few preconfigured services
    			instances := []*model.ServiceInstance{}
    			for _, svc := range services {
    				instances = append(instances, &model.ServiceInstance{
    					Service:     svc,
    					ServicePort: ports[0],
    					Endpoint:    &model.IstioEndpoint{EndpointPort: 8080},
    				}, &model.ServiceInstance{
    					Service:     svc,
    					ServicePort: ports[1],
    					Endpoint:    &model.IstioEndpoint{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    @ThreadSafe
    public abstract class ModelRegistrations {
    
        public static <T> Builder serviceInstance(ModelReference<T> modelReference, T instance) {
            return bridgedInstance(modelReference, instance)
                .hidden(true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    )
    
    func flattenInstances(il ...[]*model.ServiceInstance) []*model.ServiceInstance {
    	ret := []*model.ServiceInstance{}
    	for _, i := range il {
    		ret = append(ret, i...)
    	}
    	return ret
    }
    
    func makeInstances(proxy *model.Proxy, svc *model.Service, servicePort int, targetPort int) []*model.ServiceInstance {
    	ret := []*model.ServiceInstance{}
    	for _, p := range svc.Ports {
    		if p.Port != servicePort {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top