Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

        int maxFileSize = 273 * 1024;
    
        protected abstract String getPackerName();
    
        protected abstract String getAccessorName();
    
        @Setup(Level.Trial)
        public void setupTrial() throws IOException {
            DIRECTORY_PROVIDER.setupTrial();
            String packerName = getPackerName();
            String accessorName = getAccessorName();
            System.out.println(">>> Measuring format: " + packerName + " with accessor " + accessorName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

        );
    
        Path tempRootDir;
        Path tempDirPath;
        File tempDirFile;
        AtomicInteger counter;
        FileSystem fileSystem;
    
        @Setup(Level.Trial)
        public void setupTrial() throws IOException {
            this.tempRootDir = Files.createTempDirectory("chmod-benchmark");
            NativeServices.initializeOnDaemon(tempRootDir.toFile(), NativeServicesMode.fromSystemProperties());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top