Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 287 for serviceOf (0.14 sec)

  1. 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)
  2. pkg/proxy/config/config_test.go

    	}
    	fakeWatch.Add(service2)
    	services := []*v1.Service{service2, service1}
    	handler.ValidateServices(t, services)
    
    	fakeWatch.Delete(service1)
    	services = []*v1.Service{service2}
    	handler.ValidateServices(t, services)
    }
    
    func TestNewServicesMultipleHandlersAddedAndNotified(t *testing.T) {
    	_, ctx := klogtesting.NewTestContext(t)
    	client := fake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. 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)
  4. pkg/registry/core/service/ipallocator/controller/repairip.go

    // The bidirectional relation is achieved using the following fields:
    // Service.Spec.Cluster == IPAddress.Name AND IPAddress.ParentRef == Service
    //
    // The controller use two reconcile loops, one for Services and other for IPAddress.
    // The Service reconcile loop verifies the bidirectional relation exists and is correct.
    // 1. Service_X [ClusterIP_X]  <------>  IPAddress_X [Ref:Service_X]   ok
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. 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)
  6. guava/src/com/google/common/util/concurrent/Service.java

     */
    @DoNotMock("Create an AbstractIdleService")
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface Service {
      /**
       * If the service state is {@link State#NEW}, this initiates service startup and returns
       * immediately. A stopped service may not be restarted.
       *
       * @return this
       * @throws IllegalStateException if the service is not {@link State#NEW}
       * @since 15.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Service.java

     */
    @DoNotMock("Create an AbstractIdleService")
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface Service {
      /**
       * If the service state is {@link State#NEW}, this initiates service startup and returns
       * immediately. A stopped service may not be restarted.
       *
       * @return this
       * @throws IllegalStateException if the service is not {@link State#NEW}
       * @since 15.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigurationCachingIntegrationTest.groovy

        }
    
        def "can use input handler when from cache"() {
            given:
            buildFile << """
                def serviceRef = gradle.serviceRef
                task read {
                    doLast {
                        def response =  serviceRef.get()._requiredServices.userInputHandler.askYesNoQuestion("there?")
                        println "response: \$response"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/validation_test.go

    			instance: &ServiceInstance{
    				Service: service1,
    				Endpoint: &IstioEndpoint{
    					Address:      "192.168.1.2",
    					EndpointPort: 1000000,
    				},
    			},
    		},
    		{
    			name: "endpoint missing service port",
    			instance: &ServiceInstance{
    				Service: service1,
    				ServicePort: &Port{
    					Name:     service1.Ports[1].Name + "-extra",
    					Port:     service1.Ports[1].Port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 19:35:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_server_journal_test.go

    		{name: "dot service", services: []string{service3}},
    		{name: "underscore service", services: []string{service4}},
    		{name: "at service", services: []string{service5}},
    		{name: "colon service", services: []string{service6}},
    		{name: "invalid service new line", services: []string{invalid1}, wantErr: true},
    		{name: "invalid service with dot", services: []string{invalid2}, wantErr: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 22:27:44 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top