Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConnectionAction (0.12 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

            super(new PerformanceDatabase("cross_build_results"));
            this.resultType = resultType;
        }
    
        @Override
        public void report(final R results) {
            withConnectionClosingDb("write results", (ConnectionAction<Void>) connection -> {
                long executionId = insertExecution(connection, results);
                batchInsertOperation(connection, results, executionId);
                insertExecutionExperiment(connection, results);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

            super(new PerformanceDatabase(databaseName));
        }
    
        @Override
        public void report(final CrossVersionPerformanceResults results) {
            withConnectionClosingDb("write results", (ConnectionAction<Void>) connection -> {
                long testId = insertExecution(connection, results);
                batchInsertOperation(connection, results, testId);
                updatePreviousTestId(connection, results);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top