Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 51 for sendo (0.02 seconds)

  1. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

    import org.codelibs.fess.mylasta.mail.LogNotificationPostcard;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.mail.send.hook.SMailCallbackContext;
    import org.lastaflute.core.mail.Postbox;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.index.query.QueryBuilders;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                                systemHelper.getCurrentTimeAsLong() - execTime, MemoryUtil.byteCountToDisplaySize(docList.getContentSize()),
                                MemoryUtil.getMemoryUsageLog());
                    } else {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/PreparePatchRelease.kt

            val uri = "https://services.gradle.org/versions/$major"
            val request = HttpRequest.newBuilder().uri(URI(uri)).build()
            val response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString())
            if (response.statusCode() > 399) {
                throw RuntimeException("Failed to fetch versions from Gradle services: ${response.statusCode()} ${response.body()}")
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:47:12 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/filter/RateLimitFilter.java

                }
                sendRateLimitResponse(httpResponse, rateLimitHelper.getRetryAfterSeconds());
                return;
            }
    
            chain.doFilter(request, response);
        }
    
        /**
         * Send a 403 Forbidden response for blocked IPs.
         * @param response the HTTP response
         * @throws IOException if an I/O error occurs
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  5. src/main/resources/fess_indices/fess/es/stopwords.txt

    era
    eras
    éramos
    erais
    eran
    fui
    fuiste
    fue
    fuimos
    fuisteis
    fueron
    fuera
    fueras
    fuéramos
    fuerais
    fueran
    fuese
    fueses
    fuésemos
    fueseis
    fuesen
    siendo
    sido
    tengo
    tienes
    tiene
    tenemos
    tenéis
    tienen
    tenga
    tengas
    tengamos
    tengáis
    tengan
    tendré
    tendrás
    tendrá
    tendremos
    tendréis
    tendrán
    tendría
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 2.2K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

            discloser.setPlainText("Test Content");
    
            // Should call both sendToSlack and sendToGoogleChat
            try {
                notificationHelper.send(null, discloser);
            } catch (Exception e) {
                fail("send() should not throw an exception: " + e.getMessage());
            }
        }
    
        @Test
        public void test_toSlackMessage_withOnlySubject() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 20K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_en.properties

    labels.chat_step_intent=Analyze
    labels.chat_step_search=Search
    labels.chat_step_evaluate=Evaluate
    labels.chat_step_fetch=Retrieve
    labels.chat_step_answer=Answer
    labels.chat_input_hint=Press Enter to send, Shift+Enter for new line
    labels.chat_send=Send message
    labels.chat_retry=Retry
    labels.chat_dismiss=Dismiss
    labels.chat_copied=Copied!
    labels.chat_copy_failed=Copy failed
    
    labels.chat_filter=Filter
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

                    }
                });
            } catch (final Exception e) {
                logger.warn("Failed to write thread dump: file={}", file, e);
            }
        }
    
        /**
         * Processes all thread information and sends it to the provided consumer.
         *
         * @param writer the consumer that will handle each line of thread dump output
         */
        public static void processThreadDump(final Consumer<String> writer) {
    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)
  9. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                if (aggregations != null) {
                    builder.facetResponse(new FacetResponse(aggregations));
                }
    
            });
            return builder.build();
        }
    
        /**
         * Sends a search request to OpenSearch with the specified parameters.
         *
         * @param query the search query string
         * @param params the search request parameters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 09:24:04 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/filter/LoadControlFilter.java

            if (dotIndex >= 0) {
                final String extension = path.substring(dotIndex);
                return STATIC_EXTENSIONS.contains(extension);
            }
            return false;
        }
    
        /**
         * Sends a 429 JSON response for API requests.
         * @param response the HTTP response
         * @throws IOException if an I/O error occurs
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 4.8K bytes
    - Click Count (0)
Back to Top