Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,942 for service2 (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. releasenotes/notes/service-ordering.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 03 18:45:09 UTC 2021
    - 202 bytes
    - Viewed (0)
  9. helm/minio/templates/service.yaml

      {{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }}
      clusterIP: {{ .Values.service.clusterIP }}
      {{- end }}
      {{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }}
      externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
      {{- end }}
      {{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerSourceRanges }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. releasenotes/notes/mcs-service-discovery.yaml

    releaseNotes:
      - |
        **Added** experimental support for controlling service endpoint discoverability with Kubernetes Multi-Cluster
        Services (MCS). This feature is off by default, but can be enabled by setting the
        `ENABLE_MCS_SERVICE_DISCOVERY` flag in Istio. When enabled, Istio will make service endpoints
        only discoverable from within the same cluster by default. To make the service endpoints within a cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 18 22:59:02 UTC 2021
    - 830 bytes
    - Viewed (0)
Back to top