Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for serviceInstance (0.42 sec)

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

                .build());
        }
    
        private <T> void registerServiceOn(ModelRegistry modelRegistry, String path, ModelType<T> type, T instance, String descriptor) {
            modelRegistry.register(ModelRegistrations.serviceInstance(ModelReference.of(path, type), instance)
                .descriptor(descriptor)
                .build()
            );
        }
    
        private String instanceDescriptorFor(String path) {
    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/serviceregistry/kube/controller/controller_test.go

    		Metadata:    &model.NodeMetadata{Namespace: "nsa", ClusterID: clusterID},
    	}
    	serviceInstances := controller.GetProxyServiceTargets(svcNode)
    
    	if len(serviceInstances) != 1 {
    		t.Fatalf("GetProxyServiceTargets() expected 1 instance, got %d", len(serviceInstances))
    	}
    
    	hostname := kube.ServiceHostname("svc1", "nsa", defaultFakeDomainSuffix)
    	if serviceInstances[0].Service.Hostname != hostname {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	// Full determines whether a full push is required or not. If false, an incremental update will be sent.
    	// Incremental pushes:
    	// * Do not recompute the push context
    	// * Do not recompute proxy state (such as ServiceInstances)
    	// * Are not reported in standard metrics such as push time
    	// As a result, configuration updates should never be incremental. Generally, only EDS will set this, but
    	// in the future SDS will as well.
    	Full bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top