Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for Reaber (0.31 sec)

  1. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            // search
    
        }
    
        public void importCsv(final Reader reader) {
            @SuppressWarnings("resource")
            final CsvReader csvReader = new CsvReader(reader, new CsvConfig());
            try {
                List<String> list;
                csvReader.readValues(); // ignore header
                while ((list = csvReader.readValues()) != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/PropertiesUtil.java

            }
        }
    
        /**
         * {@link Properties#load(Reader)}の例外処理をラップします。
         * <p>
         * 入力リーダはクローズされません。
         * </p>
         *
         * @param props
         *            プロパティセット。{@literal null}であってはいけません
         * @param reader
         *            入力リーダ。{@literal null}であってはいけません
         */
        public static void load(final Properties props, final Reader reader) {
            assertArgumentNotNull("props", props);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/io/LineIteratorTest.java

     */
    public class LineIteratorTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void test() throws Exception {
            final StringReader reader = new StringReader("aaa\nbbb\nccc\n");
            final LineIterator it = new LineIterator(reader);
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("aaa"));
            assertThat(it.hasNext(), is(true));
            assertThat(it.next(), is("bbb"));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            prop.load(inStream);
            properties = prop;
        }
    
        @Override
        public synchronized void load(final Reader reader) throws IOException {
            final Properties prop = new Properties();
            lastModified = propertiesFile.lastModified();
            prop.load(reader);
            properties = prop;
        }
    
        @Override
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

            }
    
            // request header
            final List<org.codelibs.fess.crawler.client.http.RequestHeader> rhList = new ArrayList<>();
            int count = 1;
            String headerName = paramMap.get(CRAWLER_WEB_HEADER_PREFIX + count + ".name");
            while (StringUtil.isNotBlank(headerName)) {
                final String headerValue = paramMap.get(CRAWLER_WEB_HEADER_PREFIX + count + ".value");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java

            }
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testForEachLineIterator() throws Exception {
            final StringReader reader = new StringReader("aaa\nbbb\nccc\n");
            for (final Indexed<String> indexed : indexed(iterable(reader))) {
                System.out.println(indexed.getIndex());
                System.out.println(indexed.getElement());
            }
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            return roles;
        }
    
        protected void processSubRoles(final LdapUser ldapUser, final String bindDn, final Set<String> subRoleSet, final String groupFilter,
                final Set<String> roleSet) {
            // (member:1.2.840.113556.1.4.1941:=%s)
            if (subRoleSet.isEmpty()) {
                return;
            }
            String filter = subRoleSet.stream().map(s -> String.format(groupFilter, s)).collect(Collectors.joining());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsRequestHeaderCB.java

        @Override
        public RequestHeaderDbm asDBMeta() {
            return RequestHeaderDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "request_header";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                basicAuthList.add(webAuth.getAuthentication());
            }
            paramMap.put(HcHttpClient.BASIC_AUTHENTICATIONS_PROPERTY, basicAuthList.toArray(new Authentication[basicAuthList.size()]));
    
            // request header
            final List<RequestHeader> requestHeaderList = requestHeaderService.getRequestHeaderList(getId());
            final List<org.codelibs.fess.crawler.client.http.RequestHeader> rhList = new ArrayList<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_ja.properties

    labels.search_options_close=閉じる
    labels.search_options_clear=クリア
    labels.search_cache_msg=このページは {0} のキャッシュです。{1} に存在していたページのスナップショットです。
    labels.search_unknown=不明
    labels.footer_back_to_top=トップに戻る
    labels.header_brand_name=Fess
    labels.header_form_option_btn=オプション
    labels.file_crawling_configuration=ファイルのクロール
    labels.file_crawling_title_details=ファイルクロールの設定
    labels.included_paths=クロール対象とするパス
    labels.excluded_paths=クロール対象から除外するパス
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
Back to top