Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for offerer (0.25 sec)

  1. LICENSE

          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          (except as stated in this section) patent license to make, have made,
          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                params.put("Offset", toNumberString(e.getQueryOffset()));
                params.put("Page Size", toNumberString(e.getQueryPageSize()));
                params.put("Client IP", e.getClientIp());
                params.put("Referer", e.getReferer());
                params.put("Languages", e.getLanguages());
                params.put("Virtual Host", e.getVirtualHost());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                long counter = 0;
                final Deque<String> urlQueue = new LinkedList<>();
                final Set<String> processedUrls = new HashSet<>();
                urlQueue.offer(url);
                while (!urlQueue.isEmpty() && (maxAccessCount < 0 || counter < maxAccessCount)) {
                    counter++;
                    final Map<String, Object> localDataMap =
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

            }
    
            final File thumbnailFile = thumbnailManager.getThumbnailFile(doc);
            if (thumbnailFile == null) {
                if (fessConfig.isThumbnailEnabled()) {
                    thumbnailManager.offer(doc);
                }
                // 404
                throw responseManager.new404("Thumbnail for " + form.docId + " is under generating.");
            }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/Crawler.java

        @Resource
        protected CrawlingInfoService crawlingInfoService;
    
        public static void addError(final String msg) {
            if (StringUtil.isNotBlank(msg)) {
                errors.offer(msg);
            }
        }
    
        public static class Options {
    
            @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID")
            public String sessionId;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  6. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                    final String thumbnailField = fessConfig.getIndexFieldThumbnail();
                    docList.stream().forEach(doc -> {
                        if (!thumbnailManager.offer(doc)) {
                            if (logger.isDebugEnabled()) {
                                logger.debug("Removing {}={} from doc[{}]", thumbnailField, doc.get(thumbnailField),
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
            if (patterns.length == 0) {
                return true;
            }
    
            if (referer == null) {
                return false;
            }
            return Arrays.stream(patterns).anyMatch(p -> p.matcher(referer).matches());
        }
    
        String getQueryHighlightContentDescriptionFields();
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

            this.queryTime = value;
        }
    
        public String getReferer() {
            checkSpecifiedProperty("referer");
            return convertEmptyToNull(referer);
        }
    
        public void setReferer(String value) {
            registerModifiedProperty("referer");
            this.referer = value;
        }
    
        public LocalDateTime getRequestedAt() {
            checkSpecifiedProperty("requestedAt");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/SearchLogDbm.java

                false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnReferer = cci("referer", "referer", null, null, String.class, "referer", null, false, false, false,
                "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess_log.search_log/search_log.json

          },
          "queryOffset": {
            "type": "integer"
          },
          "queryPageSize": {
            "type": "integer"
          },
          "userAgent": {
            "type": "keyword"
          },
          "referer": {
            "type": "keyword"
          },
          "clientIp": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "accessType": {
            "type": "keyword"
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 25 13:38:21 GMT 2022
    - 1.6K bytes
    - Viewed (0)
Back to top