Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 319 for getValue3 (0.07 sec)

  1. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

                for (final Tuple3<String, String, String> host : vHosts) {
                    final String headerValue = req.getHeader(host.getValue1());
                    if (host.getValue2().equalsIgnoreCase(headerValue)) {
                        return func.apply(host.getValue3());
                    }
                }
                return defaultValue;
            }).orElse(defaultValue);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            assertNotNull(task);
            assertNotNull(task.getValue1());
            assertNotNull(task.getValue2());
            assertNotNull(task.getValue3());
            assertEquals("task-id", task.getValue1());
            assertEquals(path, task.getValue2());
            assertEquals("application/pdf", task.getValue3());
        }
    
        public void test_createTask_withNullPath() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple5.java

         *
         * @return The third value
         */
        public T3 getValue3() {
            return value3;
        }
    
        /**
         * Sets the third value.
         *
         * @param value3
         *            The third value
         */
        public void setValue3(final T3 value3) {
            this.value3 = value3;
        }
    
        /**
         * Returns the fourth value.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Tuple4.java

         *
         * @return The third value
         */
        public T3 getValue3() {
            return value3;
        }
    
        /**
         * Sets the third value.
         *
         * @param value3
         *            The third value
         */
        public void setValue3(final T3 value3) {
            this.value3 = value3;
        }
    
        /**
         * Returns the fourth value.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                                        || Constants.MAPPING_TYPE_PDF_DATE.equalsIgnoreCase(mapping.getValue2())) {
                                    final String dateFormat;
                                    if (StringUtil.isNotBlank(mapping.getValue3())) {
                                        dateFormat = mapping.getValue3();
                                    } else if (Constants.MAPPING_TYPE_PDF_DATE.equalsIgnoreCase(mapping.getValue2())) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        return false;
                    }
                    if ("admin".equalsIgnoreCase(v.getValue3()) || "common".equalsIgnoreCase(v.getValue3())
                            || "error".equalsIgnoreCase(v.getValue3()) || "login".equalsIgnoreCase(v.getValue3())
                            || "profile".equalsIgnoreCase(v.getValue3())) {
                        return false;
                    }
                    return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Tuple3.java

         *
         * @return The third value
         */
        public T3 getValue3() {
            return value3;
        }
    
        /**
         * Sets the third value.
         *
         * @param value3
         *            The third value
         */
        public void setValue3(final T3 value3) {
            this.value3 = value3;
        }
    
        @Override
        public String toString() {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                if (boostList != null) {
                    boostList.forEach(pair -> list.add(new FilterFunctionBuilder(pair.getValue2(), pair.getValue3())));
                }
            });
        }
    
        /**
         * Retrieves a list of boosted documents for the specified KeyMatch.
         *
         * @param keyMatch The KeyMatch instance.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                for (final String target : targets) {
                    final ThumbnailQueue entity = new ThumbnailQueue();
                    entity.setGenerator(task.getValue1());
                    entity.setThumbnailId(task.getValue2());
                    entity.setPath(task.getValue3());
                    entity.setTarget(target);
                    entity.setCreatedBy(Constants.SYSTEM_USER);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                                    if (bitsField != null && !bitsField.getValues().isEmpty()) {
                                        docMap.put(fessConfig.getQueryCollapseInnerHitsName() + "_hash", bitsField.getValues().get(0));
                                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top