Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 490 for checkIsE (0.04 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/RequestHeader.java

        /**
         * Sets the value of the request header.
         * @param value The value of the request header.
         */
        public void setValue(final String value) {
            this.value = value;
        }
    
        /**
         * Checks if the request header is valid.
         * A header is considered valid if its name is not blank and its value is not null.
         * @return true if the header is valid, false otherwise.
         */
        public boolean isValid() {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResult.java

        /**
         * Adds a Throwable to the list of failures.
         *
         * @param t the Throwable to add
         */
        public void addFailure(final Throwable t) {
            failures.add(t);
        }
    
        /**
         * Checks if there are any failures recorded.
         *
         * @return true if there is at least one failure, false otherwise
         */
        public boolean hasFailure() {
            return !failures.isEmpty();
        }
    
        /**
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java

         *
         * @param sessionId The session ID.
         */
        @Override
        public void saveSession(final String sessionId) {
            // TODO use cache
        }
    
        /**
         * Checks if a URL has been visited by looking in both the queue and access results.
         *
         * @param urlQueue The URL queue entry to check.
         * @return true if the URL has been visited, false otherwise.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 17K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                    }
                    return Locale.ENGLISH;
                }).orElse(Locale.ENGLISH).getLanguage() + "\">";
            }
            return "</html>";
        }
    
        /**
         * Checks if a label with the specified key exists in the current request's label map.
         *
         * @param value the label key to check
         * @return true if the label exists, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (1)
  5. src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java

            if (contextHandle == null) {
                contextHandle = new byte[20];
            }
            buf.readOctetArray(contextHandle, 0, 20);
        }
    
        /**
         * Checks if the context handle has been invalidated (all zeros).
         * A successful unregistration typically results in a zeroed context handle.
         *
         * @return true if the context handle has been invalidated
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImpl.java

            ruleList.add(index, rule);
        }
    
        /*
         * (non-Javadoc)
         *
         * @see
         * org.codelibs.fess.crawler.rule.RuleManager#hasRule(org.codelibs.fess.crawler.rule.Rule)
         */
        /**
         * Checks if the rule manager contains the specified rule.
         * @param rule the rule to check for
         * @return true if the rule is present, false otherwise
         */
        @Override
        public boolean hasRule(final Rule rule) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/platform/Jdk9Platform.kt

          null
        }
    
      override fun trustManager(sslSocketFactory: SSLSocketFactory): X509TrustManager? {
        // Not supported due to access checks on JDK 9+:
        // java.lang.reflect.InaccessibleObjectException: Unable to make member of class
        // sun.security.ssl.SSLSocketFactoryImpl accessible:  module java.base does not export
        // sun.security.ssl to unnamed module @xxx
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu May 29 16:52:38 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/advanced-dependencies.md

    But there could be cases where you want to be able to set parameters on the dependency, without having to declare many different functions or classes.
    
    Let's imagine that we want to have a dependency that checks if the query parameter `q` contains some fixed content.
    
    But we want to be able to parameterize that fixed content.
    
    ## A "callable" instance { #a-callable-instance }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/collection/SLinkedList.java

         */
        public int size() {
            return size;
        }
    
        /**
         * Checks if the list is empty.
         *
         * @return true if the list is empty, false otherwise
         */
        public boolean isEmpty() {
            return size == 0;
        }
    
        /**
         * Checks if an element is contained in the list.
         *
         * @param element the element
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/log/Logger.java

         * @param clazz
         *            The class to be used as the logging category.
         */
        protected Logger(final Class<?> clazz) {
            log = factory.getLoggerAdapter(clazz);
        }
    
        /**
         * Checks if debug level is enabled.
         *
         * @return true if debug is enabled, false otherwise
         */
        public boolean isDebugEnabled() {
            return log.isDebugEnabled();
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
Back to top