Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for testOperation (0.16 sec)

  1. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

                            queue.add(new TestOperation(startedLatch))
                            queue.add(new TestOperation(startedLatch))
                            startedLatch.await()
                            throw new Exception("queue failure")
                        }
                    }
                }
    
                class TestOperation implements RunnableBuildOperation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

            });
        }
    
        private void batchInsertOperation(Connection connection, R results, long executionId) throws SQLException {
            try (PreparedStatement statement = connection.prepareStatement("insert into testOperation(testExecution, displayName, tasks, args, gradleOpts, daemon, totalTime, cleanTasks) values (?, ?, ?, ?, ?, ?, ?, ?)")) {
                for (BuildDisplayInfo displayInfo : results.getBuilds()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

        private void batchInsertOperation(Connection connection, CrossVersionPerformanceResults results, long testId) throws SQLException {
            try (PreparedStatement statement = connection.prepareStatement(insertStatement("testOperation", "testExecution", "version", "totalTime"))) {
                addOperations(statement, testId, null, results.getCurrent());
                for (BaselineVersion baselineVersion : results.getBaselineVersions()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

        /**
         * Returns all tests, in the order started.
         */
        List<Operation> getTests() {
            assertHasZeroOrMoreTrees()
            def testOperations = operations.findAll { it.test } as List
            testOperations.forEach { it.assertIsTest() }
            return testOperations
        }
    
        /**
         * Returns all events for test class and method execution
         */
        List<Operation> getTestClassesAndMethods() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistrySpec.groovy

                defaultSerializerRegistry.build(SerializableParent)
            }
            then:
            noExceptionThrown()
            conditions.await(5.0)
            where:
            // Rerun this test 10 times
            testIteration << (0..9)
        }
    
        static class SerializableParent implements Serializable {}
    
        static class Serializable1 extends SerializableParent {}
    
        static class Serializable2 extends SerializableParent {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top