Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for InternalUnsupportedBuildArgumentException (0.78 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/exceptions/InternalUnsupportedBuildArgumentException.java

    /**
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     */
    public class InternalUnsupportedBuildArgumentException extends RuntimeException {
    
        public InternalUnsupportedBuildArgumentException(String message) {
            super(message);
        }
    
        public InternalUnsupportedBuildArgumentException(String message, Throwable throwable) {
            super(message, throwable);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalPhasedActionConnection.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    
    /**
     * Mixed into a provider connection, to allow tooling models in different phases of the build to be
     * requested by the user.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalCancellableConnection.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    
    /**
     * Mixed into a provider connection, to allow tooling models to be requested by the client
     * and to run client-provided actions (including builds) with cancellation support.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalParameterAcceptingConnection.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    
    /**
     * Mixed into a provider connection, to allow tooling models to be requested by the client
     * and to run client-provided actions (including builds) with cancellation support.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

    import org.gradle.tooling.internal.protocol.ShutdownParameters;
    import org.gradle.tooling.internal.protocol.StoppableConnection;
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    import org.gradle.tooling.internal.protocol.test.InternalTestExecutionConnection;
    import org.gradle.tooling.internal.protocol.test.InternalTestExecutionRequest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

    import org.gradle.launcher.cli.converter.StartParameterConverter;
    import org.gradle.tooling.internal.protocol.InternalLaunchable;
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    import org.gradle.tooling.internal.provider.connection.ProviderOperationParameters;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoaderTest.groovy

            throw new UnsupportedOperationException();
        }
    
        @Override
        def <T> BuildResult<T> run(InternalBuildAction<T> action, InternalCancellationToken cancellationToken, BuildParameters operationParameters)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectionExceptionTransformer.java

    import org.gradle.tooling.internal.protocol.BuildExceptionVersion1;
    import org.gradle.tooling.internal.protocol.InternalBuildCancelledException;
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    import org.gradle.tooling.internal.protocol.test.InternalTestExecutionException;
    
    public class ConnectionExceptionTransformer {
        private final ConnectionFailureMessageProvider messageProvider;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (InternalUnsupportedBuildArgumentException.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