Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for getLastModified (0.13 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            }
            // content_length
            putResultDataBody(dataMap, fessConfig.getIndexFieldContentLength(), Long.toString(responseData.getContentLength()));
            // last_modified
            final Date lastModified = getLastModified(dataMap, responseData);
            if (lastModified != null) {
                dataMap.put(fessConfig.getIndexFieldLastModified(), lastModified); // overwrite
                // timestamp
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java

         */
        void setContentLength(Long contentLength);
    
        /**
         * Returns the last modified time of the accessed resource.
         *
         * @return the last modified time
         */
        Long getLastModified();
    
        /**
         * Sets the last modified time of the accessed resource.
         *
         * @param lastModified the last modified time
         */
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java

        void setDepth(Integer depth);
    
        /**
         * Returns the last modified timestamp of the URL in the queue.
         *
         * @return the last modified timestamp as a Long value.
         */
        Long getLastModified();
    
        /**
         * Sets the last modified timestamp for the URL queue entry.
         *
         * @param lastModified the timestamp of the last modification in milliseconds since epoch.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        }
    
        @Override
        public long getDate() {
            handshake();
            return this.connection.getDate();
        }
    
        @Override
        public long getLastModified() {
            handshake();
            return this.connection.getLastModified();
        }
    
        @Override
        public String getHeaderField(final String header) {
            handshake();
            return this.connection.getHeaderField(header);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                        }
                        return false;
                    }
                    if (responseData.getLastModified() == null) {
                        return true;
                    }
                    if (responseData.getLastModified().getTime() <= lastModified.getTime() && httpStatusCode == 200) {
    
                        log(logHelper, LogType.NOT_MODIFIED, crawlerContext, urlQueue);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

            final UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1];
            if (logger.isDebugEnabled()) {
                logger.debug("Checking the last modified: {}", urlQueue.getLastModified());
            }
        }
    
        /**
         * Processes unsupported URL log events.
         *
         * @param objs the log objects (should contain UrlQueue)
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java

            assertNotNull(fileInfo);
            assertEquals(childName, fileInfo.getName());
            assertEquals(size, fileInfo.getSize());
            assertEquals(lastModified, fileInfo.getLastModified());
            assertEquals(isDirectory, fileInfo.isDirectory());
            assertEquals(attributes, fileInfo.getAttributes());
            assertEquals(creationTime, fileInfo.getCreationTime());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

            return contentLength;
        }
    
        @Override
        public void setContentLength(final Long contentLength) {
            this.contentLength = contentLength;
        }
    
        @Override
        public Long getLastModified() {
            return lastModified;
        }
    
        @Override
        public void setLastModified(final Long lastModified) {
            this.lastModified = lastModified;
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

                return size;
            }
    
            /**
             * Gets the last modification timestamp of this cached item
             * @return the last modified time
             */
            public long getLastModified() {
                return lastModified;
            }
    
            /**
             * Checks if this cached item represents a directory
             * @return true if this is a directory
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java

        }
    
        /**
         * Gets the last modified date of the resource.
         *
         * @return the last modified date, or null if not available
         */
        public Date getLastModified() {
            return lastModified;
        }
    
        /**
         * Sets the last modified date of the resource.
         *
         * @param lastModified the last modified date to set
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 11.6K bytes
    - Viewed (0)
Back to top