Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for Schack (0.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java

     *
     */
    public interface UrlFilter {
    
        /**
         * Initialize a url filter by sessionId.
         *
         * @param sessionId Session ID
         */
        void init(String sessionId);
    
        /**
         * Check if a given url is a target.
         *
         * @param url URL
         * @return true if url is matched
         */
        boolean match(String url);
    
        /**
         * Add an url pattern as a target.
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

            // UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1];
            final ResponseData responseData = (ResponseData) objs[2];
            if (logger.isDebugEnabled()) {
                logger.debug("No rule for ({}, {}). PLEASE CHECK YOUR CONFIGURATION.", responseData.getUrl(), responseData.getMimeType());
            }
        }
    
        protected void processNoResponseProcessor(final Object... objs) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

        //                                                                              ======
        @Override
        protected int delegateSelectCountUniquely(final ConditionBean cb) {
            // #pending check response and cast problem
            final SearchRequestBuilder builder = client.prepareSearch(asEsIndex());
            final EsAbstractConditionBean esCb = (EsAbstractConditionBean) cb;
            if (esCb.getPreference() != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/FileAttributesTest.java

            }
        }
    
    
        public void assertCloseTime ( long timeMs ) {
            if ( timeMs - System.currentTimeMillis() > 5 * 60 * 1000L ) {
                assertTrue("Time is not within 30s, check clocks " + new Date(timeMs), false);
            }
        }
    
    
        @Test
        public void testLastModified () throws CIFSException, MalformedURLException, UnknownHostException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

            if ( s.indexOf('.') < 0 && s.toUpperCase(Locale.ROOT).equals(s) ) {
                String fqdn = s + "." + dom;
                if ( log.isDebugEnabled() ) {
                    log.debug(String.format("Applying DFS netbios name hack %s -> %s ", s, fqdn));
                }
                this.server = fqdn;
            }
        }
    
    
        @Override
        public void fixupHost ( String fqdn ) {
            String s = getServer();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  6. src/main/config/openapi/openapi-user.yaml

              $ref: '#/components/responses/NotFound'
            '500':
              $ref: '#/components/responses/InternalServerError'
              
      /health:
        get:
          tags:
            - monitor
          summary: Check a server status
          description: Returns status
          operationId: ping
          responses:
            '200':
              description: Successful operation
              content:
                application/json:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/StringUtil.java

         * StringUtils.isAsciiPrintable("\u007f") = false
         * StringUtils.isAsciiPrintable("Ceki G\u00fclc\u00fc") = false
         * </pre>
         *
         * @param cs the CharSequence to check, may be null
         * @return {@code true} if every character is in the range 32 thru 126
         */
        public static boolean isAsciiPrintable(final CharSequence cs) {
            if (cs == null) {
                return false;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                exists = response.isExists();
            } catch (final Exception e) {
                logger.debug("Failed to check {} index status.", indexName, e);
            }
            return exists;
        }
    
        public boolean copyDocIndex(final String fromIndex, final String toIndex, final boolean waitForCompletion) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: File Name */
        public static final String LABELS_DESIGN_FILE_NAME = "{labels.designFileName}";
    
        /** The key of the message: Check Last Modified */
        public static final String LABELS_INCREMENTAL_CRAWLING = "{labels.incrementalCrawling}";
    
        /** The key of the message: Error Count */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <_comment>Wolfram Mathematica</_comment>
        <glob pattern="*.ma"/>
        <glob pattern="*.nb"/>
        <glob pattern="*.mb"/>
        <!-- Note - there is no Unique Magic for Mathematica files! -->
        <!-- Check for a Mathematica-style opening comment as our best hope... -->
        <magic priority="50">
          <match value="(**" type="string" offset="0"/>
          <match value="(* " type="string" offset="0"/>
        </magic>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top