Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,455 for ulong (0.04 sec)

  1. 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)
  2. 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)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/OutputSpecification.groovy

            start(description: description)
        }
    
        ProgressStartEvent start(Long id) {
            start(id: id)
        }
    
        ProgressStartEvent start(Long id, String status) {
            start(id: id, status: status)
        }
    
        ProgressStartEvent start(Map args) {
            Long parentId = args.containsKey("parentId") ? args.parentId : null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionEvent.java

    public class GarbageCollectionEvent {
        private final long timestamp;
        private final MemoryUsage usage;
        private final long count;
    
        public GarbageCollectionEvent(long timestamp, MemoryUsage usage, long count) {
            this.timestamp = timestamp;
            this.usage = usage;
            this.count = count;
        }
    
        public long getTimestamp() {
            return timestamp;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatusSnapshot.java

    public class JvmMemoryStatusSnapshot implements JvmMemoryStatus {
        private final long maximumMemory;
        private final long committedMemory;
    
        public JvmMemoryStatusSnapshot(long maximumMemory, long commitedMemory) {
            this.maximumMemory = maximumMemory;
            this.committedMemory = commitedMemory;
        }
    
        @Override
        public long getMaxMemory() {
            return maximumMemory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/DefaultRuleActionValidatorTest.groovy

            ruleValidator.validate(Stub(RuleAction) {
                getInputTypes() >> { [ Long ] }
            })
    
            then:
            def failure = thrown(RuleActionValidationException)
            failure.message == "Rule may not have an input parameter of type: java.lang.Long. Second parameter must be of type: java.lang.Integer."
        }
    
        def "rejects invalid type when no type configured" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/ConnectionEvent.kt

      }
    
      data class ConnectionClosed(
        override val timestampNs: Long,
        override val connection: Connection,
      ) : ConnectionEvent()
    
      data class ConnectionAcquired(
        override val timestampNs: Long,
        override val connection: Connection,
        val call: Call,
      ) : ConnectionEvent()
    
      data class ConnectionReleased(
        override val timestampNs: Long,
        override val connection: Connection,
        val call: Call,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DetachedResolvedGraphDependency.java

        private final Long selected;
        private final ComponentSelectionReason reason;
        private final ModuleVersionResolveException failure;
        private final boolean constraint;
        private final Long fromVariant;
        private final Long targetVariant;
    
        public DetachedResolvedGraphDependency(ComponentSelector requested,
                                               Long selected,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/BinaryResultBackedTestResultsProvider.java

                }
            });
            return hasOutput[0];
        }
    
        @Override
        public boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
            return false;
        }
    
        @Override
        public void writeAllOutput(final long classId, final TestOutputEvent.Destination destination, final Writer writer) {
            withReader(new Action<TestOutputStore.Reader>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/DefaultTaskSkippedResult.java

        private final long startTime;
        private final long endTime;
        private final String skipMessage;
    
        public DefaultTaskSkippedResult(long startTime, long endTime, String skipMessage) {
            this.startTime = startTime;
            this.endTime = endTime;
            this.skipMessage = skipMessage;
        }
    
        @Override
        public long getStartTime() {
            return startTime;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top