Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,455 for ulong (0.29 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/internal/DefaultFileDownloadSuccessResult.java

        private final long bytesDownloaded;
    
        public DefaultFileDownloadSuccessResult(long startTime, long endTime, long bytesDownloaded) {
            super(startTime, endTime);
            this.bytesDownloaded = bytesDownloaded;
        }
    
        @Override
        public long getBytesDownloaded() {
            return bytesDownloaded;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

        protected final String index;
    
        protected final long tookMs;
    
        protected final List<String> words;
    
        protected final int num;
    
        protected final long total;
    
        protected final List<SuggestItem> items;
    
        public PopularWordsResponse(final String index, final long tookMs, final List<String> words, final long total,
                final List<SuggestItem> items) {
            this.index = index;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileEventAdapter.java

        // ProjectEvaluationListener
        @Override
        public void beforeEvaluate(Project project) {
            long now = clock.getCurrentTime();
            buildProfile.getProjectProfile(project.getPath()).getConfigurationOperation().setStart(now);
        }
    
        @Override
        public void afterEvaluate(Project project, ProjectState state) {
            long now = clock.getCurrentTime();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue6833_c.c

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "_cgo_export.h"
     
    unsigned long long
    issue6833Func(unsigned int aui, unsigned long long aull) {
    	return GoIssue6833Func(aui, aull);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 303 bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MaximumHeapHelper.java

         */
        public long getDefaultMaximumHeapSize(long osTotalMemory) {
            if (isIbmJvm()) {
                long totalMemoryHalf = osTotalMemory / 2;
                long halfGB = MemoryAmount.parseNotation("512m");
                return totalMemoryHalf > halfGB ? halfGB : totalMemoryHalf;
            }
    
            long totalMemoryFourth = osTotalMemory / 4;
            long oneGB = MemoryAmount.parseNotation("1g");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/InMemoryTestResultsProvider.java

                    hasOutput[0] = reader.hasOutput(classId, destination);
                }
            });
            return hasOutput[0];
        }
    
        @Override
        public boolean hasOutput(final long classId, final long testId, final TestOutputEvent.Destination destination) {
            final boolean[] hasOutput = new boolean[1];
            withReader(new Action<TestOutputStore.Reader>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalRepositoryResourceAccessor.java

        }
    
        private static class ServiceCall implements ImplicitInputRecord<String, Long> {
            private final String resource;
            private final Long hash;
    
            private ServiceCall(String resource, @Nullable Long resourceHash) {
                this.resource = resource;
                this.hash = resourceHash;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/DefaultExternalResourceMetaData.java

        private final URI location;
        private final Date lastModified;
        private final long contentLength;
        private final String etag;
        private final HashCode sha1;
        private final String contentType;
    
        private final String fileName;
        private final boolean wasMissing;
    
        public DefaultExternalResourceMetaData(URI location, long lastModified, long contentLength) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusSnapshot.java

         * @param totalVirtualMemory total virtual memory in bytes
         * @param freeVirtualMemory free virtual memory in bytes
         */
        public OsMemoryStatusSnapshot(
            long totalPhysicalMemory, long freePhysicalMemory, long totalVirtualMemory, long freeVirtualMemory
        ) {
            this(
                new DefaultAvailableOsMemoryStatusAspect("physical", totalPhysicalMemory, freePhysicalMemory),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java

         */
        @Override
        public Long getCreateTime() {
            return createTime;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.UrlQueue#setCreateTime(java.sql.Long)
         */
        @Override
        public void setCreateTime(final Long createTime) {
            this.createTime = createTime;
        }
    
        /*
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top