Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for stoppable (0.18 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/Connection.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal;
    
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.dispatch.Receive;
    
    /**
     * <p>A messaging endpoint which allows push-style dispatch and pull-style receive.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ConsumerConnection.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.consumer.connection;
    
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.tooling.BuildAction;
    import org.gradle.tooling.internal.consumer.PhasedBuildAction;
    import org.gradle.tooling.internal.consumer.TestExecutionRequest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/InstrumentedExecutionAccessListenerRegistry.kt

    import org.gradle.internal.classpath.InstrumentedExecutionAccess
    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.service.scopes.ListenerService
    
    
    @ListenerService
    internal
    class InstrumentedExecutionAccessListenerRegistry(
        instrumentedExecutionAccessListener: InstrumentedExecutionAccessListener
    ) : Stoppable {
    
        init {
            InstrumentedExecutionAccess.setListener(instrumentedExecutionAccessListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/SignatureVerificationService.java

     */
    package org.gradle.api.internal.artifacts.verification.signatures;
    
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.security.internal.PublicKeyService;
    
    import java.io.File;
    import java.util.Set;
    
    public interface SignatureVerificationService extends Stoppable {
        void verify(File origin, File signature, Set<String> trustedKeys, Set<String> ignoredKeys, SignatureVerificationResultBuilder result);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestClassProcessor.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing;
    
    import org.gradle.internal.concurrent.Stoppable;
    
    /**
     * A processor for executing tests. Implementations are not required to be thread-safe.
     */
    public interface TestClassProcessor extends Stoppable {
        /**
         * Performs any initialisation which this processor needs to perform.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/ClassPathModeExceptionCollector.kt

     * limitations under the License.
     */
    package org.gradle.kotlin.dsl.provider
    
    import org.gradle.internal.concurrent.Stoppable
    import java.util.Collections.synchronizedList
    
    
    open class ClassPathModeExceptionCollector : Stoppable {
    
        private
        val collection: MutableList<Exception> = synchronizedList(mutableListOf<Exception>())
    
        val exceptions: List<Exception>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:10:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ConsumerActionExecutor.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.consumer.connection;
    
    import org.gradle.internal.concurrent.Stoppable;
    
    /**
     * Implementations must be thread-safe.
     */
    public interface ConsumerActionExecutor extends Stoppable {
        /**
         * Blocks until all actions have completed.
         */
        @Override
        void stop();
    
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentRegistry.java

    import org.gradle.api.logging.Logging;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.internal.Cast;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationRunner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/LockableSftpClient.java

     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.sftp;
    
    import com.jcraft.jsch.ChannelSftp;
    import org.gradle.internal.concurrent.Stoppable;
    
    public interface LockableSftpClient extends Stoppable {
        SftpHost getHost();
        ChannelSftp getSftpClient();
        boolean isConnected();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 899 bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesInitializationTest.groovy

    package org.gradle.internal.nativeintegration.services
    
    import net.rubygrapefruit.platform.Native
    import org.gradle.api.internal.file.temp.TemporaryFileProvider
    import org.gradle.internal.Cast
    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.file.Chmod
    import org.gradle.internal.reflect.JavaMethod
    import org.gradle.internal.service.ServiceRegistration
    import org.gradle.internal.service.ServiceRegistry
    import org.slf4j.LoggerFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 08:51:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top