Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for noOp (0.01 seconds)

  1. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

        private static final Logger logger = LogManager.getLogger(ThreadDumpUtil.class);
    
        /**
         * Private constructor to prevent instantiation of this utility class.
         */
        protected ThreadDumpUtil() {
            // noop
        }
    
        /**
         * Prints thread dump information to the logger at INFO level.
         */
        public static void printThreadDump() {
            processThreadDump(logger::info);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java

         */
        void onError(String phase, String error);
    
        /**
         * Returns a no-op callback implementation.
         *
         * @return a callback that does nothing
         */
        static ChatPhaseCallback noOp() {
            return new ChatPhaseCallback() {
                @Override
                public void onPhaseStart(final String phase, final String message) {
                    // no-op
                }
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:32:04 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

         */
        public static class ApiDeleteResponse extends ApiResponse {
            /**
             * Constructs an empty ApiDeleteResponse.
             */
            public ApiDeleteResponse() {
                // NOP
            }
    
            /**
             * The number of deleted items.
             */
            protected long count = 1;
    
            /**
             * Sets the count of deleted items.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                            try {
                                buf.append(URLEncoder.encode(String.valueOf(c), Constants.UTF_8));
                            } catch (final UnsupportedEncodingException e) {
                                // NOP
                            }
                        }
                    }
                    hash = buf.toString();
                } else {
                    hash = StringUtil.EMPTY;
                }
            } else {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 11 09:47:03 GMT 2025
    - 9K bytes
    - Click Count (0)
Back to Top