Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for isTargetPluginVersion (0.16 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         *
         * @param version the version to check
         * @return true if the version is a target version, false otherwise
         */
        protected boolean isTargetPluginVersion(final String version) {
            return ComponentUtil.getFessConfig().isTargetPluginVersion(version);
        }
    
        /**
         * Gets the actual version string for a SNAPSHOT artifact by parsing the snapshot metadata.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

                        }
                    }
                    throw new FessSystemException("unknown");
                }
    
                @Override
                protected boolean isTargetPluginVersion(final String version) {
                    return true;
                }
            };
        }
    
        @Test
        public void test_processRepository1() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (num > 0) {
                return num;
            }
            return Runtime.getRuntime().availableProcessors();
        }
    
        String getPluginVersionFilter();
    
        default boolean isTargetPluginVersion(final String version) {
            final Pattern pattern;
            if (StringUtil.isBlank(getPluginVersionFilter())) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
Back to Top