Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,374 for ulong (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

        protected Map<String, Object> initParamMap;
    
        protected long maxCachedContentSize = 1024L * 1024L; //1mb
    
        protected Integer accessTimeout = null; // sec
    
        protected Long maxContentLength = null;
    
        public void init() {
            // max content length
            final Long maxContentLengthParam = getInitParameter(MAX_CONTENT_LENGTH, maxContentLength, Long.class);
            if (maxContentLengthParam != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

            long newFreeMemory = doRequestFreeMemory(status.getName(), requestedFreeMemory, freeMemory);
            return newFreeMemory > freeMemory;
        }
    
        private long doRequestFreeMemory(String name, long requestedFreeMemory, long freeMemory) {
            long toReleaseMemory = requestedFreeMemory;
            if (freeMemory < requestedFreeMemory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java

    /**
     * @author shinsuke
     *
     */
    public class ContentLengthHelper {
    
        protected long defaultMaxLength = 10L * 1024L * 1024L;// 10M
    
        protected Map<String, Long> maxLengthMap = new HashMap<>();
    
        public void addMaxLength(final String mimeType, final long maxLength) {
            if (StringUtil.isBlank(mimeType)) {
                throw new CrawlerSystemException("MIME type is a blank.");
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java

        void setMimeType(String mimeType);
    
        Long getCreateTime();
    
        void setCreateTime(Long createTime);
    
        Integer getExecutionTime();
    
        void setExecutionTime(Integer executionTime);
    
        AccessResultData<IDTYPE> getAccessResultData();
    
        void setAccessResultData(AccessResultData<IDTYPE> accessResultData);
    
        Long getContentLength();
    
        void setContentLength(Long contentLength);
    
        Long getLastModified();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCleanupProgressMonitor.java

    import org.gradle.internal.operations.BuildOperationContext;
    
    public class DefaultCleanupProgressMonitor implements CleanupProgressMonitor {
    
        private final BuildOperationContext buildOperationContext;
        private long deleted;
        private long skipped;
    
        public DefaultCleanupProgressMonitor(BuildOperationContext buildOperationContext) {
            this.buildOperationContext = buildOperationContext;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/DefaultFileAccessTimeJournal.java

        }
    
        @Override
        public void stop() {
            cache.close();
        }
    
        @Override
        public void setLastAccessTime(File file, long millis) {
            store.put(file, millis);
        }
    
        @Override
        public long getLastAccessTime(File file) {
            Long value = store.getIfPresent(file);
            if (value == null) {
                return Math.max(inceptionTimestamp, file.lastModified());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top