Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,554 for LONG (2.9 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. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicy.java

            private final A request;
            private final B cachedResult;
            private final long ageMillis;
            private long keepForMillis;
            private boolean ruleMatch;
            private boolean mustCheck;
    
            private AbstractResolutionControl(A request, B cachedResult, long ageMillis, long keepForMillis) {
                this.request = request;
                this.cachedResult = cachedResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

        public class DocMeta implements Serializable {
    
            private static final long serialVersionUID = 1L;
    
            protected String id;
    
            protected Long version;
    
            protected Long seqNo;
    
            protected Long primaryTerm;
    
            private transient RequestOptionCall<IndexRequestBuilder> indexOption;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top