Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 354 for NO (0.01 seconds)

  1. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            fessConfig.logNotificationEnabled = true;
            fessConfig.hasNotification = false;
            ComponentUtil.setFessConfig(fessConfig);
    
            String result = logNotificationJob.execute();
    
            assertEquals("No notification targets configured.", result);
        }
    
        @Test
        public void test_formatDetails() {
            TestableLogNotificationJob testableJob = new TestableLogNotificationJob();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  2. .teamcity/scripts/CheckBadMerge.java

        }
    
        private static List<String> parentCommitsOf(String commit) throws IOException, InterruptedException, ExecutionException {
            String stdout = getStdout(new String[] {"git", "show", "--format=%P", "--no-patch", "--no-show-signature", commit});
            String trimmed = stdout.trim();
            if (trimmed.isEmpty()) {
                return Collections.emptyList();
            }
            return Arrays.stream(trimmed.split("\\s+"))
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

            // Test method chaining
            assertSame(purgeThumbnailJob, result);
            // Test value was set
            assertEquals(1L, purgeThumbnailJob.getExpiry());
        }
    
        // Test execute with successful purge (no files deleted)
        @Test
        public void test_execute_noFilesDeleted() {
            thumbnailManager.setPurgeCallCount(0);
    
            String result = purgeThumbnailJob.execute();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            response.setContentType("text/event-stream");
            response.setCharacterEncoding("UTF-8");
            response.setHeader("Cache-Control", "no-cache");
            response.setHeader("Connection", "keep-alive");
            response.setHeader("X-Accel-Buffering", "no"); // Disable nginx buffering
    
            try (final PrintWriter writer = response.getWriter()) {
                final String userId = getUserId(request);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            indexExportJob.query(customQuery).execute();
    
            // Verifies no exception thrown with custom query
        }
    
        @Test
        public void test_execute_withDefaultQuery() {
            setupMockComponents(Collections.emptyList());
    
            // No query set, should use matchAllQuery
            final String result = indexExportJob.execute();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  6. CONTRIBUTING.md

    You can share your interest in fixing the issue by commenting on it.
    If somebody shared their interest in the issue, please consider letting them work on it.
    However, if there are no changes for more than a week, it's safe to assume that the issue is up for grabs.
    There is no need to ask for an assignment or for permission to work on those issues, just comment and start working on it.
    
    ## Setting up your development environment
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

                isRelease -> "promoteReleaseMilestone"
                else -> "promoteMilestone"
            }
    
        fun promoteFinalReleaseTaskName(): String =
            when {
                isMaster -> throw UnsupportedOperationException("No final release job on master branch")
                isRelease -> "promoteFinalRelease"
                else -> "promoteFinalBackportRelease"
            }
    
        private fun nightlyTaskName(prefix: String): String =
            when {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Dec 29 08:57:18 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  8. CLAUDE.md

    - Return `HtmlResponse` for JSP, `JsonResponse` for APIs
    
    ### Service
    - Inject behaviors (Bhv) for data access
    - Use `OptionalEntity<T>` for nullable returns
    - Plain classes (no extends/implements)
    
    ### Helper
    - Stateless utility classes
    - Access via `ComponentUtil.getXyzHelper()`
    - Named with "Helper" suffix
    
    ### DBFlute Generated Code
    ```
    opensearch/{index}/
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  9. src/packaging/common/scripts/prerm

            exit 1
        ;;
    esac
    
    # Stops the service
    if [ "$STOP_REQUIRED" = "true" ]; then
        echo -n "Stopping fess service..."
        if command -v systemctl >/dev/null; then
            systemctl --no-reload stop fess.service > /dev/null 2>&1 || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
            else
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 1.7K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                    fos = new FileOutputStream(newFile);
                    writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8));
                    fos = null; // Successfully wrapped, no need to close explicitly
                } catch (final Exception e) {
                    if (fos != null) {
                        try {
                            fos.close();
                        } catch (final IOException ioe) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
Back to Top