Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for furent (0.03 sec)

  1. src/main/resources/fess_indices/fess/fr/stopwords.txt

    seraient
    étais
    était
    étions
    étiez
    étaient
    fus
    fut
    fûmes
    fûtes
    furent
    sois
    soit
    soyons
    soyez
    soient
    fusse
    fusses
    fût
    fussions
    fussiez
    fussent
    ayant
    eu
    eue
    eues
    eus
    ai
    as
    avons
    avez
    ont
    aurai
    auras
    aura
    aurons
    aurez
    auront
    aurais
    aurait
    aurions
    auriez
    auraient
    avais
    avait
    avions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 977 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

            return defaultValue;
        }
    
        /**
         * Creates a new DataStoreParams instance with a copy of the current parameters.
         * This provides an independent copy that can be modified without affecting the original.
         *
         * @return a new DataStoreParams instance containing a copy of the current parameters
         */
        public DataStoreParams newInstance() {
            return new DataStoreParams(params);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            }
        }
    
        /**
         * Hook method called before action execution.
         * <p>
         * This method logs user access activity for the current request.
         * </p>
         *
         * @param runtime the action runtime context
         * @return the action response from the parent hook
         */
        @Override
        public ActionResponse hookBefore(final ActionRuntime runtime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         *
         * @param runtime the action runtime context containing request information
         * @return ActionResponse with unauthorized error if access denied, otherwise delegates to parent
         */
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
            if (!isAccessAllowed()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            StackTraceElement[] stackTrace = exception.getStackTrace();
            assertNotNull(stackTrace);
            assertTrue(stackTrace.length > 0);
    
            // Check that the current test method is in the stack trace
            boolean foundTestMethod = false;
            for (StackTraceElement element : stackTrace) {
                if (element.getMethodName().equals("test_stackTrace")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/DocMap.java

        /** The underlying map that this DocMap wraps */
        private final Map<String, Object> parent;
    
        /**
         * Constructor that creates a DocMap wrapping the given parent map.
         *
         * @param parent the map to wrap and delegate operations to
         */
        public DocMap(final Map<String, Object> parent) {
            this.parent = parent;
        }
    
        /**
         * Returns the number of key-value mappings in this map.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/AtomicDouble.java

        while (true) {
          long current = value;
          double currentVal = longBitsToDouble(current);
          double nextVal = updateFunction.applyAsDouble(currentVal);
          long next = doubleToRawLongBits(nextVal);
          if (updater.compareAndSet(this, current, next)) {
            return nextVal;
          }
        }
      }
    
      /**
       * Returns the String representation of the current value.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

            // Test with normal URLs
            String parentUrl = "http://example.com/parent";
            String url = "http://example.com/child";
            ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
    
            assertNotNull(exception);
            assertEquals("Not Found: http://example.com/child Parent: http://example.com/parent", exception.getMessage());
            assertNull(exception.getCause());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

         */
        public void setPageSize(final int pageSize) {
            this.pageSize = pageSize;
        }
    
        /**
         * Gets the current page number (1-based).
         * If the current page number is not set or is invalid, returns the default current page number.
         *
         * @return the current page number
         */
        public int getCurrentPageNumber() {
            if (currentPageNumber <= 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

        }
    
        /**
         * Gets the current page number.
         * @return The current page number.
         */
        public int getCurrentPageNumber() {
            if (currentPageNumber <= 0) {
                currentPageNumber = getDefaultCurrentPageNumber();
            }
            return currentPageNumber;
        }
    
        /**
         * Sets the current page number.
         * @param currentPageNumber The current page number.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top