Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for TAPI (0.03 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             * Returns if this task was executed incrementally.
             *
             * See {@code org.gradle.work.InputChanges#isIncremental()}.
             */
            @NotUsedByScanPlugin("used to report incrementality to TAPI progress listeners")
            boolean isIncremental();
    
        }
    
        private ExecuteTaskBuildOperationType() {
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoader.java

    import org.slf4j.LoggerFactory;
    
    /**
     * Loads the tooling API implementation of the Gradle version that will run the build (the "provider").
     * Adapts the rather clunky cross-version interface to the more readable interface of the TAPI client.
     */
    public class DefaultToolingImplementationLoader implements ToolingImplementationLoader {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultToolingImplementationLoader.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ToolingApiLoggingCrossVersionSpec.groovy

                .withCommandLineGradleOpts("-Dorg.gradle.deprecation.trace=false") //suppress deprecation stack trace
    
            if (targetDist.toolingApiMergesStderrIntoStdout) {
                // The TAPI provider merges the streams, so need to merge the streams for command-line execution too
                executer.withArgument("--console=plain")
                executer.withTestConsoleAttached()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            def topLevelFunctions = topLevelReceiverType.memberFunctions.collect { toString() }
            !topLevelFunctions.find { it.contains("simpleName=testSoftwareType") }
        }
    
        def 'interpretation sequences obtained via TAPI are suitable for analysis'() {
            given:
            withSoftwareTypePlugins().prepareToExecute()
    
            file("settings.gradle.dcl") << """
                $ecosystemPluginInSettings
                conventions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildToolingApiSpecification.groovy

    import static spock.lang.Retry.Mode.SETUP_FEATURE_CLEANUP
    
    @Timeout(180)
    @Retry(condition = { onContinuousBuildTimeout(instance, failure) }, mode = SETUP_FEATURE_CLEANUP, count = 2)
    // Can't use the FS watching, embedded executor and TAPI together
    @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
    abstract class ContinuousBuildToolingApiSpecification extends ToolingApiSpecification {
    
        public static final String BUILD_CANCELLED = "Build cancelled."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

            return new TestVariant(rootId, "selected", discoveryRequest);
        }
    
        static TestVariant tapiTargetLoaded(UniqueId rootId, EngineDiscoveryRequest discoveryRequest) {
            String variant = "tapi";
            TestVariant testVariant = new TestVariant(rootId, variant, new ToolingApiClassloaderDiscoveryRequest(discoveryRequest, variant));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

            } else if (daemonParameters.getRequestedJvmBasedOnJavaHome() != null && daemonParameters.getRequestedJvmBasedOnJavaHome() != Jvm.current()) {
                // Either the TAPI client or org.gradle.java.home has been provided
                resolvedJvm = Jvm.forHome(daemonParameters.getRequestedJvmBasedOnJavaHome().getJavaHome());
            } else {
                resolvedJvm = Jvm.current();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            } else if (daemonParameters.getRequestedJvmBasedOnJavaHome() != null && daemonParameters.getRequestedJvmBasedOnJavaHome() != Jvm.current()) {
                // Either the TAPI client or org.gradle.java.home has been provided
                JavaLanguageVersion detectedVersion = JavaLanguageVersion.of(jvmVersionDetector.getJavaVersionMajor(daemonParameters.getRequestedJvmBasedOnJavaHome()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

    /**
     * A {@link TestExecutionListener} that maps JUnit5 events to Gradle test events.
     * Most importantly, it will map assertion and platform failures to Gradle's {@link TestFailure} class, which we can send through the TAPI.
     */
    @NonNullApi
    public class JUnitPlatformTestExecutionListener implements TestExecutionListener {
    
        private final static List<TestFailureMapper> MAPPERS = Arrays.asList(
            new OpenTestAssertionFailedMapper(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

    abstract class ToolingApiSpecification extends Specification implements KotlinDslTestProjectInitiation {
        /**
         * See https://github.com/gradle/gradle-private/issues/3216
         * To avoid flakiness when reusing daemons between CLI and TAPI
         */
        public static final List NORMALIZED_BUILD_JVM_OPTS = ["-Dfile.encoding=UTF-8", "-Duser.country=US", "-Duser.language=en", "-Duser.variant"]
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top