Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,044 for ulong (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/FileHasherStatistics.java

            public void reportFileHashed(long length) {
                hashedFileCount.incrementAndGet();
                hashedContentLength.addAndGet(length);
            }
    
            public FileHasherStatistics collect() {
                long hashedFileCount = this.hashedFileCount.getAndSet(0);
                long hashedContentLength = this.hashedContentLength.getAndSet(0);
                return new FileHasherStatistics() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/DefaultLockStateSerializer.java

            long creationNumber = dataInput.readLong();
            long sequenceNumber = dataInput.readLong();
            return new SequenceNumberLockState(creationNumber, sequenceNumber, sequenceNumber);
        }
    
        private static class SequenceNumberLockState implements LockState {
            private final long creationNumber;
            private final long originalSequenceNumber;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/DefaultOperationSuccessResult.java

        private final long startTime;
        private final long endTime;
    
        public DefaultOperationSuccessResult(long startTime, long endTime) {
            this.startTime = startTime;
            this.endTime = endTime;
        }
    
        @Override
        public long getStartTime() {
            return startTime;
        }
    
        @Override
        public long getEndTime() {
            return endTime;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/TestProjectDuration.groovy

     */
    @CompileStatic
    @JsonInclude(JsonInclude.Include.NON_NULL)
    class TestProjectDuration {
        String testProject
        Long linux
        Long windows
        Long macOs
    
        TestProjectDuration(String testProject, Long linux, Long windows, Long macOs) {
            this.testProject = testProject
            this.linux = linux
            this.windows = windows
            this.macOs = macOs
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultTestSkippedResult.java

        private final long startTime;
        private final long endTime;
    
        public DefaultTestSkippedResult(long startTime, long endTime) {
            this.startTime = startTime;
            this.endTime = endTime;
        }
    
        @Override
        public long getStartTime() {
            return startTime;
        }
    
        @Override
        public long getEndTime() {
            return endTime;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableLong.java

    public class MutableLong implements Serializable {
        private long value;
    
        public MutableLong() {
            this(0L);
        }
    
        public MutableLong(long value) {
            this.value = value;
        }
    
        public long get() {
            return value;
        }
    
        public void set(long value) {
            this.value = value;
        }
    
        public void increment(long delta) {
            value += delta;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/OperationProgressDetails.java

        private final long progress;
        private final long total;
        private final String units;
    
        public OperationProgressDetails(long progress, long total, String units) {
            this.progress = progress;
            this.total = total;
            this.units = units;
        }
    
        public long getProgress() {
            return progress;
        }
    
        public long getTotal() {
            return total;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyRead.groovy

            return new SystemPropertyRead() {
                @Override
                String getJavaExpression() {
                    return "Long.getLong(\"$name\", Long.valueOf($defaultValue))"
                }
    
                @Override
                String getGroovyExpression() {
                    return "Long.getLong(\"$name\", $defaultValue as Long)"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

     *
     */
    public final class CLIReportingUtils {
        // CHECKSTYLE_OFF: MagicNumber
        public static final long MB = 1024 * 1024;
    
        private static final long ONE_SECOND = 1000L;
    
        private static final long ONE_MINUTE = 60 * ONE_SECOND;
    
        private static final long ONE_HOUR = 60 * ONE_MINUTE;
    
        private static final long ONE_DAY = 24 * ONE_HOUR;
        // CHECKSTYLE_ON: MagicNumber
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

            }
        }
    
        private static Long estimatedTimeForOs(PerformanceExperiment experiment, OperatingSystem os, Map<OperatingSystem, Long> perOs, Map<OperatingSystem, PerformanceFlakinessDataProvider> flakinessDataProviders) {
            Long baseDuration = perOs.get(os);
            PerformanceFlakinessDataProvider performanceFlakinessDataProvider = flakinessDataProviders.get(os);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top