Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stoppable (0.14 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     * org.gradle.internal.concurrent.Stoppable} then the appropriate {@link Closeable#close()} or {@link Stoppable#stop()} method is called. Instances are closed in reverse dependency order.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            child.addProvider(new ServiceRegistrationProvider() {
                @Provides
                Stoppable createCloseableService(Closeable dependency) {
                    childService
                }
            })
    
            when:
            def service = child.get(Stoppable)
            registry.close()
    
            then:
            service == childService
            1 * parentService.close()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

       Restart-LogService $LOGGINGAGENT_SERVICE $LOGGINGAGENT_CMDLINE
    }
    
    # Restarts the service, or starts it if it is not currently
    # running. A standard `Restart-Service` may fail because
    # the process is sometimes unstoppable, so this function works around it
    # by killing the processes.
    function Restart-LogService([string]$service, [string]$cmdline) {
      Stop-Service -NoWait -ErrorAction Ignore $service
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top