Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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)
  2. .gitignore

    # -------
    *.classpath
    *.project
    *.settings
    /bin
    /subprojects/*/bin
    atlassian-ide-plugin.xml
    .metadata/
    
    # NetBeans
    # --------
    .nb-gradle
    .nb-gradle-properties
    
    # Vim
    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    # --------
    .textmate
    
    # Sublime Text
    # ------------
    *.sublime-*
    
    # Draw.io
    # -------
    *.bkp
    *.dtmp
    
    # jEnv
    # ----
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 16:15:24 GMT 2026
    - 1.8K bytes
    - Click Count (0)
Back to Top