Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 353 for Sheather (0.04 sec)

  1. guava/src/com/google/common/util/concurrent/Monitor.java

       *
       * @return whether the monitor was entered
       * @since 28.0 (but only since 33.4.0 in the Android flavor)
       */
      public boolean enter(Duration time) {
        return enter(toNanosSaturated(time), TimeUnit.NANOSECONDS);
      }
    
      /**
       * Enters this monitor. Blocks at most the given time.
       *
       * @return whether the monitor was entered
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

        /**
         * The total number of pages available for pagination.
         */
        private int allPageCount;
    
        /**
         * Indicates whether a previous page exists for pagination.
         */
        private boolean existPrePage;
    
        /**
         * Indicates whether a next page exists for pagination.
         */
        private boolean existNextPage;
    
        /**
         * The list of page numbers to display for pagination navigation.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/MethodUtil.java

            assertArgumentNotNull("method", method);
    
            return (T) invoke(method, null, args);
        }
    
        /**
         * Returns whether the method is <code>abstract</code>.
         *
         * @param method
         *            The method. Cannot be {@literal null}
         * @return <code>abstract</code> if the method is abstract
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

        /** The total number of records. */
        private int allRecordCount;
    
        /**
         * The total number of pages.
         */
        private int allPageCount;
    
        /** Whether a previous page exists. */
        private boolean existPrePage;
    
        /** Whether a next page exists. */
        private boolean existNextPage;
    
        /** The list of page numbers for pagination display. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/sql/ResultSetUtil.java

            }
        }
    
        /**
         * Moves the result set to the next position.
         *
         * @param resultSet
         *            The result set. Must not be {@literal null}.
         * @return Whether the result set successfully moved to the next position.
         */
        public static boolean next(final ResultSet resultSet) {
            assertArgumentNotNull("resultSet", resultSet);
    
            try {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java

        private int allRecordCount;
    
        /** The total number of pages. */
        private int allPageCount;
    
        /** Flag indicating whether a previous page exists. */
        private boolean existPrePage;
    
        /** Flag indicating whether a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for navigation display. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/RolePager.java

        private int allRecordCount;
    
        /**
         * Total number of pages.
         */
        private int allPageCount;
    
        /**
         * Flag indicating whether a previous page exists.
         */
        private boolean existPrePage;
    
        /**
         * Flag indicating whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * List of page numbers for pagination navigation.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        /** The path for the user identification cookie */
        protected String cookiePath = "/";
    
        /** Whether the user identification cookie should be secure (HTTPS only) */
        protected Boolean cookieSecure;
    
        /** Whether the user identification cookie should be HTTP-only */
        protected boolean httpOnly = true;
    
        /**
         * Retrieves the user code for the current request.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. true <br>
         * comment: Whether to use a dedicated temporary directory.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getUseOwnTmpDir();
    
        /**
         * Is the property for the key 'use.own.tmp.dir' true? <br>
         * The value is, e.g. true <br>
         * comment: Whether to use a dedicated temporary directory.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/exception/FessSystemException.java

         *
         * @param message the detail message describing the exception
         * @param enableSuppression whether suppression is enabled or disabled
         * @param writableStackTrace whether the stack trace should be writable
         */
        protected FessSystemException(final String message, final boolean enableSuppression, final boolean writableStackTrace) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top