Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DefaultToolingImplementationLoader (0.57 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoader.java

     */
    public class DefaultToolingImplementationLoader implements ToolingImplementationLoader {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultToolingImplementationLoader.class);
        private final ClassLoader classLoader;
    
        public DefaultToolingImplementationLoader() {
            this(DefaultToolingImplementationLoader.class.getClassLoader());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectorServices.java

    import org.gradle.internal.time.Time;
    import org.gradle.tooling.CancellationTokenSource;
    import org.gradle.tooling.internal.consumer.loader.CachingToolingImplementationLoader;
    import org.gradle.tooling.internal.consumer.loader.DefaultToolingImplementationLoader;
    import org.gradle.tooling.internal.consumer.loader.SynchronizedToolingImplementationLoader;
    import org.gradle.tooling.internal.consumer.loader.ToolingImplementationLoader;
    
    public class ConnectorServices {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/toolingApi-operation.puml

    note left
    uses DistributionFactory to create classloader and instantiate DefaultConnection (provider side) using services lookup
    then creates ConsumerConnection matching to capability of this DefaultConnection (DefaultToolingImplementationLoader.create())
    ConnectionVersion4BackedConsumerConnection.java: pre 1.0m8
    InternalConnectionBackedConsumerConnection.java: 1.0m8 - 1.1
    BuildActionRunnerBackedConsumerConnection: 1.2 - 1.5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoaderTest.groovy

            .setProjectDir(tmpDir.testDirectory)
            .setVerboseLogging(true)
            .build()
        final BuildCancellationToken cancellationToken = Mock()
        final loader = new DefaultToolingImplementationLoader()
    
        def "locates connection implementation using meta-inf service then instantiates and configures the connection"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.tooling.internal.consumer.loader.DefaultToolingImplementationLoader> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultToolingImplementationLoader.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top