Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for inprogress (0.06 seconds)

  1. src/main/webapp/WEB-INF/view/chat/chat.jsp

    								<p class="empty-state-description"><la:message key="labels.chat_welcome_description" /></p>
    							</div>
    						</div>
    						<div id="progressIndicator" class="progress-indicator d-none" role="status" aria-live="polite">
    							<div class="progress-steps">
    								<div class="progress-step" data-phase="intent">
    									<div class="step-icon"><i class="fa fa-lightbulb-o" aria-hidden="true"></i></div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/orig/view/chat/chat.jsp

    								<p class="empty-state-description"><la:message key="labels.chat_welcome_description" /></p>
    							</div>
    						</div>
    						<div id="progressIndicator" class="progress-indicator d-none" role="status" aria-live="polite">
    							<div class="progress-steps">
    								<div class="progress-step" data-phase="intent">
    									<div class="step-icon"><i class="fa fa-lightbulb-o" aria-hidden="true"></i></div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. src/main/webapp/css/chat.css

        margin-bottom: 0.75rem;
    }
    
    .progress-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem;
        min-width: 70px;
        opacity: 0.4;
        transition: all 0.3s ease;
    }
    
    .progress-step.active {
        opacity: 1;
    }
    
    .progress-step.completed {
        opacity: 0.7;
    }
    
    .progress-step .step-icon {
        width: 32px;
        height: 32px;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  4. src/main/webapp/js/chat.js

                }
            });
        }
    
        /**
         * Update progress message
         */
        function updateProgressMessage(message) {
            elements.progressMessage.text(message);
        }
    
        /**
         * Show progress indicator
         */
        function showProgressIndicator() {
            // Reset all steps
            $('.progress-step').removeClass('active completed');
            elements.progressMessage.text('');
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

        }
    
        /**
         * Performs the actual crawling operation for the provided data configurations.
         * This method manages the creation and execution of crawler threads,
         * monitors their progress, and handles cleanup operations.
         *
         * <p>The method:</p>
         * <ul>
         *   <li>Creates crawler threads for each data configuration</li>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19K bytes
    - Click Count (0)
  6. src/main/webapp/js/purify.min.js

    m","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

         */
        protected BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue;
    
        /**
         * Flag indicating whether thumbnail generation is currently in progress.
         */
        protected volatile boolean generating;
    
        private Thread thumbnailQueueThread;
    
        /**
         * Size of the thumbnail path cache.
         */
        protected int thumbnailPathCacheSize = 10;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Destroys the IndexUpdater when the container is shutting down.
         * Stops all crawler instances if crawling is still in progress.
         */
        @PreDestroy
        public void destroy() {
            if (!finishCrawling) {
                if (logger.isInfoEnabled()) {
                    logger.info("Stopping all crawlers.");
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
Back to Top