Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for collectOutput (0.23 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

        }
    
        private <T> T fetchSchemaModel(Class<T> modelType) {
            toolingApi.withConnection() { connection ->
                ModelBuilder<T> modelBuilder = connection.model(modelType)
                collectOutputs(modelBuilder)
                modelBuilder.get()
            }
        }
    
        private static boolean documentIsEquivalentTo(
            String expectedDocumentText,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

            withConnection {
                def launcher = newBuild()
                    .forTasks(task)
                    .addProgressListener(events, operationTypes)
                collectOutputs(launcher)
                config.execute(launcher)
                launcher.run()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

            TestLauncher testLauncher = connection.newTestLauncher()
                .withCancellationToken(cancellationToken)
                .addProgressListener(events, OperationType.TASK, OperationType.TEST)
    
            collectOutputs(testLauncher)
    
            configurationClosure.call(testLauncher)
    
            events.clear()
            if (resultHandler == null) {
                testLauncher.run()
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top