Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mostRecent (0.14 sec)

  1. platforms/core-runtime/build-operations/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationRunner.java

            public <R, D, T extends BuildOperationType<D, R>> D mostRecentDetails(Class<T> type) {
                return mostRecent(type).details;
            }
    
            @SuppressWarnings("unused")
            public <R, D, T extends BuildOperationType<D, R>> R mostRecentResult(Class<T> type) {
                return mostRecent(type).result;
            }
    
            @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    		// against etcd followed by the special bookmark event
    		return 0, nil
    	}
    	// at this point the clients is interested
    	// only in getting a stream of events
    	// starting at the MostRecent point in time (RV)
    	currentStorageRV, err := w.getCurrentStorageRV(ctx)
    	if err != nil {
    		return 0, err
    	}
    	// currentStorageRV is taken from resp.Header.Revision (int64)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                    return testNames;
                }
            });
        }
    
        @Override
        public CrossVersionPerformanceTestHistory getTestResults(
            PerformanceExperiment experiment,
            int mostRecentN,
            int maxDaysOld,
            List<String> channelPatterns,
            List<String> teamcityBuildIds
        ) {
            return withConnection("load results", connection -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                    }
                }
            });
        }
    
        @Override
        public CrossBuildPerformanceTestHistory getTestResults(final PerformanceExperiment experiment, final int mostRecentN, final int maxDaysOld, final List<String> channelPatterns, List<String> teamcityBuildIds) {
            return withConnection("load results", connection -> {
                String buildIdQuery = teamcityBuildIdQueryFor(teamcityBuildIds);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top