Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isToolingApiHasExecutionPhaseBuildOperation (0.33 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         */
        boolean isToolingApiLogsConfigureSummary();
    
        /**
         * Returns true if this version generates a build operation that wraps the execution phase
         */
        boolean isToolingApiHasExecutionPhaseBuildOperation();
    
        /**
         * Returns true if this version loads the work graph from the configuration cache in the same build that the entry is stored.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

        }
    
        @Override
        boolean isToolingApiLogsConfigureSummary() {
            return isSameOrNewer("2.14");
        }
    
        @Override
        boolean isToolingApiHasExecutionPhaseBuildOperation() {
            return isSameOrNewer("7.1-rc-1");
        }
    
        @Override
        boolean isLoadsFromConfigurationCacheAfterStore() {
            return isSameOrNewer("8.0-milestone-5")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top