Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 704 for service2 (0.29 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

                project(':a') {
                    ping.usesService(service1)
                    ping.usesService(service2)
                }
                project(':b') {
                    ping.usesService(service1)
                    ping.usesService(service2)
                }
                project(':c') {
                    ping.usesService(service1)
                    ping.usesService(service2)
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/proxy/config/api_test.go

    	// Add the first service
    	fakeWatch.Add(service1v1)
    	handler.ValidateServices(t, []*v1.Service{service1v1})
    
    	// Add another service
    	fakeWatch.Add(service2)
    	handler.ValidateServices(t, []*v1.Service{service1v1, service2})
    
    	// Modify service1
    	fakeWatch.Modify(service1v2)
    	handler.ValidateServices(t, []*v1.Service{service1v2, service2})
    
    	// Delete service1
    	fakeWatch.Delete(service1v2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K 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. 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)
  5. 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)
  6. helm/minio/templates/console-service.yaml

    {{ $scheme := .Values.tls.enabled | ternary "https" "http" }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ template "minio.fullname" . }}-console
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
      {{- if .Values.consoleService.annotations }}
      annotations: {{- toYaml .Values.consoleService.annotations | nindent 4 }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

            services.get(SomeGlobalService).is(globalService)
            services.get(GradleUserHomeDirProvider).is(userHomeDirProvider)
            services.get(SomeHomeDirService).is(homeDirService)
            services.get(SomeHomeDirService).homeDir == dir
            !services.get(SomeHomeDirService).closed
        }
    
        def "does not close services when registry is released"() {
            def dir = new File("home-dir")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. samples/ratelimit/rate-limit-service.yaml

    #   limitations under the License.
    
    ##################################################################################################
    # Redis service and deployment
    # Ratelimit service and deployment
    
    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.internal.service.scopes.CoreServices
    org.gradle.caching.internal.BuildCacheServices
    org.gradle.internal.service.scopes.ExecutionServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 209 bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.api.publish.internal.service.PublishServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 56 bytes
    - Viewed (0)
Back to top