Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for AntFixtureStop (0.05 seconds)

  1. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/AntFixtureStop.groovy

    import org.gradle.api.file.FileSystemOperations
    import org.gradle.api.tasks.Internal
    
    import javax.inject.Inject
    
    class AntFixtureStop extends LoggedExec implements FixtureStop {
    
        @Internal
        AntFixture fixture
    
        @Internal
        FileSystemOperations fileSystemOperations
    
        @Inject
        AntFixtureStop(FileSystemOperations fileSystemOperations) {
            super(fileSystemOperations)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.6K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/test/AntFixture.groovy

            throw toThrow
        }
    
        /** Adds a task to kill an elasticsearch node with the given pidfile */
        private TaskProvider<AntFixtureStop> createStopTask() {
            final AntFixture fixture = this
            TaskProvider<AntFixtureStop> stop = project.tasks.register("${name}#stop", AntFixtureStop)
            stop.configure {
                it.fixture = fixture
            }
            fixture.finalizedBy(stop)
            return stop
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.1K bytes
    - Click Count (0)
Back to Top