Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 338 for Unsupported (0.04 sec)

  1. okhttp/src/main/resources/META-INF/native-image/okhttp/okhttp/native-image.properties

    Args = -H:+AddAllCharsets --enable-http --enable-https --features=okhttp3.internal.graal.OkHttpFeature --report-unsupported-elements-at-runtime...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Dec 21 08:56:29 UTC 2024
    - 144 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

         * <p>
         * The serialization method used depends on the configured serializer type.
         * Supported types are Kryo and JavaBin serialization.
         * </p>
         *
         * @param obj the object to serialize
         * @return the serialized object as a byte array
         * @throws IllegalArgumentException if an unsupported serializer type is configured
         * @throws IORuntimeException if an I/O error occurs during serialization
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/UnmodifiableIterator.java

      protected UnmodifiableIterator() {}
    
      /**
       * Guaranteed to throw an exception and leave the underlying data unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final void remove() {
        throw new UnsupportedOperationException();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/UnsupportedSearchException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when an unsupported search operation is requested.
     * This exception indicates that the requested search functionality is not available or supported.
     */
    public class UnsupportedSearchException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

            try {
                final ActionResponse actionResponse = ssoManager.getResponse(SsoResponseType.METADATA);
                if (actionResponse == null) {
                    throw responseManager.new400("Unsupported request type.");
                }
                return actionResponse;
            } catch (final SsoMessageException e) {
                if (e.getCause() == null) {
                    if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionBean.java

            return new ConditionBeanExceptionThrower();
        }
    
        @Override
        public void xsetPaging(boolean paging) {
            // Do nothing because this is unsupported on ConditionBean.
            // And it is possible that this method is called by PagingInvoker.
        }
    
        @Override
        public void enablePagingCountLater() {
            // nothing
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionBean.java

            return new ConditionBeanExceptionThrower();
        }
    
        @Override
        public void xsetPaging(boolean paging) {
            // Do nothing because this is unsupported on ConditionBean.
            // And it is possible that this method is called by PagingInvoker.
        }
    
        @Override
        public void enablePagingCountLater() {
            // nothing
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/QueueOfferTester.java

      public void testOffer_nullUnsupported() {
        assertThrows(NullPointerException.class, () -> getQueue().offer(null));
        expectUnchanged();
        expectNullMissingWhenNullUnsupported("Should not contain null after unsupported offer(null)");
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_message.properties

    errors.invalid_query_sort_value = The specified sort {0} is invalid.
    errors.invalid_query_unsupported_sort_field = The specified sort {0} is unsupported.
    errors.invalid_query_unsupported_sort_order = The specified sort order {0} is unsupported.
    errors.invalid_query_cannot_process=Could not process the specified query.
    errors.crud_invalid_mode = The mode is incorrect. (not {0}, but {1})
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_en.properties

    errors.invalid_query_sort_value = The specified sort {0} is invalid.
    errors.invalid_query_unsupported_sort_field = The specified sort {0} is unsupported.
    errors.invalid_query_unsupported_sort_order = The specified sort order {0} is unsupported.
    errors.invalid_query_cannot_process=Could not process the specified query.
    errors.crud_invalid_mode = The mode is incorrect. (not {0}, but {1})
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top