Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 3,501 for final (0.08 sec)

  1. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

        public int hashCode() {
            final int prime = 31;
            final int result = 1;
            return prime * result + input.hashCode();
        }
    
        @Override
        public boolean equals(final Object obj) {
            if (this == obj) {
                return true;
            }
            if (obj == null || getClass() != obj.getClass()) {
                return false;
            }
            final ProtwordsItem other = (ProtwordsItem) obj;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/KeyMatchTests.java

    @Tag("it")
    public class KeyMatchTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "keyMatchTest_";
        private static final String API_PATH = "/api/admin/keymatch";
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        private static final String KEY_PROPERTY = "term";
    
        @Override
        protected String getNamePrefix() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/JobNotFoundException.java

    public class JobNotFoundException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public JobNotFoundException(final ScheduledJob scheduledJob) {
            super(scheduledJob.toString());
        }
    
        public JobNotFoundException(final String message) {
            super(message);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java

            public static final String FAIL_FAST = "ff";
            public static final String FAIL_AT_END = "fae";
            public static final String FAIL_NEVER = "fn";
            public static final String RESUME = "r";
            public static final String RESUME_FROM = "rf";
            public static final String PROJECT_LIST = "pl";
            public static final String ALSO_MAKE = "am";
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java

         * @throws SQLRuntimeException
         *             {@link SQLException}が発生した場合
         */
        public static ResultSet executeQuery(final PreparedStatement ps) throws SQLRuntimeException {
            assertArgumentNotNull("ps", ps);
    
            try {
                return ps.executeQuery();
            } catch (final SQLException ex) {
                throw new SQLRuntimeException(ex);
            }
        }
    
        /**
         * 更新を実行します。
         *
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java

        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        public int getAllPageCount() {
            return allPageCount;
        }
    
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        public boolean isExistPrePage() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/PatternConcatenationFilterFactory.java

        private Pattern pattern2;
    
        public PatternConcatenationFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name,
                final Settings settings) {
            super(indexSettings, name, settings);
    
            final String pattern1Str = settings.get("pattern1");
            final String pattern2Str = settings.get("pattern2", ".*");
    
            if (logger.isDebugEnabled()) {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapSet.java

     *
     */
    public class SitemapSet implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final String URLSET = "UrlSet";
    
        public static final String INDEX = "Index";
    
        private final List<Sitemap> sitemapList = new ArrayList<>();
    
        private String type = URLSET;
    
        public void addSitemap(final Sitemap sitemap) {
            sitemapList.add(sitemap);
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/SitemapsRule.java

        /**
         *
         */
        private static final long serialVersionUID = 1L;
    
        private static final Logger logger = LoggerFactory.getLogger(SitemapsRule.class);
    
        @Override
        public boolean match(final ResponseData responseData) {
            if (super.match(responseData)) {
                try (final InputStream is = responseData.getResponseBody()) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        }
        final int size = 50;
        final CyclicBarrier barrier =
            new CyclicBarrier(
                2 // for the setter threads
                    + size // for the listeners
                    + size // for the get threads,
                    + 1); // for the main thread
        final ExecutorService executor = Executors.newFixedThreadPool(barrier.getParties());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top