Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,563 for service2 (0.14 sec)

  1. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	framework.NewTest(t).
    		RequireIstioVersion("1.11").
    		Run(func(t framework.TestContext) {
    			serviceA = match.ServiceName(echo.NamespacedName{Name: common.ServiceA, Namespace: echos.Namespace})
    			serviceB = match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    			// Don't export service B in any cluster. All requests should stay in-cluster.
    			for _, ht := range hostTypes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/multicluster/service.go

    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (s *ServiceAnalyzer) Analyze(c analysis.Context) {
    	services := map[resource.FullName]map[cluster.ID]*resource.Instance{}
    	c.ForEach(gvk.Service, func(r *resource.Instance) bool {
    		clusterID := r.Origin.ClusterName()
    		if clusterID == "" {
    			return true
    		}
    		if _, ok := services[r.Metadata.FullName]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. pkg/quota/v1/evaluator/core/services.go

    	return []corev1.ScopedResourceSelectorRequirement{}, nil
    }
    
    // convert the input object to an internal service object or error.
    func toExternalServiceOrError(obj runtime.Object) (*corev1.Service, error) {
    	svc := &corev1.Service{}
    	switch t := obj.(type) {
    	case *corev1.Service:
    		svc = t
    	case *api.Service:
    		if err := k8s_api_v1.Convert_core_Service_To_v1_Service(t, svc, nil); err != nil {
    			return nil, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/deployment/services.go

    }
    
    // analyzeDeploymentPortProtocol analyzes the specific service mesh deployment
    func (s *ServiceAssociationAnalyzer) analyzeDeploymentPortProtocol(r *resource.Instance, c analysis.Context) {
    	// Find matching services with resulting pod from deployment
    	matchingSvcs := s.findMatchingServices(r, c)
    
    	// Generate a port map from the matching services.
    	// It creates a structure that will allow us to detect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/mcs/common/common.go

    		// Create echo instances in each cluster.
    		d.Instances, err = deployment.New(t).
    			WithClusters(t.Clusters()...).
    			WithConfig(echo.Config{
    				Service:   ServiceA,
    				Namespace: ns,
    				Ports:     ports.All(),
    			}).
    			WithConfig(echo.Config{
    				Service:   ServiceB,
    				Namespace: ns,
    				Ports:     ports.All(),
    			}).Build()
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    )
    
    func (a *index) ServicesCollection(
    	Services krt.Collection[*v1.Service],
    	ServiceEntries krt.Collection[*networkingclient.ServiceEntry],
    	Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace],
    ) krt.Collection[model.ServiceInfo] {
    	ServicesInfo := krt.NewCollection(Services, func(ctx krt.HandlerContext, s *v1.Service) *model.ServiceInfo {
    		portNames := map[int32]model.ServicePortName{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/service.go

    //sys	QueryServiceStatusEx(service Handle, infoLevel uint32, buff *byte, buffSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceStatusEx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    }
    
    // ServiceDiscovery enumerates Istio service instances.
    // nolint: lll
    type ServiceDiscovery interface {
    	NetworkGatewaysWatcher
    
    	// Services list declarations of all services in the system
    	Services() []*Service
    
    	// GetService retrieves a service by host name if it exists
    	GetService(hostname host.Name) *Service
    
    	// GetProxyServiceTargets returns the service targets that co-located with a given Proxy
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/user/src/main/java/Service1.java

    @Service
    public class Service1 {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36 bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Service.java

    import org.apache.maven.api.annotations.ThreadSafe;
    
    /**
     * Marker interface for all services provided by the {@link Session}.
     * <p>
     * Services can be retrieved from the session using the
     * {@link Session#getService(Class)} method.
     *
     * @since 4.0.0
     * @see Session#getService(Class)
     */
    @Experimental
    @ThreadSafe
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top