Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 125 for secondi (1.1 seconds)

  1. src/main/java/org/codelibs/fess/filter/LoadControlFilter.java

            response.getWriter()
                    .write("{\"response\":{\"status\":9,\"message\":\"Server is busy. Please retry after " + RETRY_AFTER_SECONDS
                            + " seconds.\",\"retry_after\":" + RETRY_AFTER_SECONDS + "}}");
        }
    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)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

            firstAcceptedApiChangesFile = projectDir.resolve("src/changes/accepted-changes/accepted-public-api-changes.json")
            secondAcceptedApiChangesFile = projectDir.resolve("src/changes/accepted-changes/second-accepted-public-api-changes.json")
    
            projectDir.resolve("build.gradle.kts")
                .writeText(
                    """
                        plugins {
                            id("gradlebuild.binary-compatibility")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Nov 29 14:03:44 GMT 2024
    - 6K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp

                                                <c:forEach var="item" items="${jspFileNameItems}">
                                                    <la:option value="${f:u(item.first)}">${f:h(item.second)}</la:option>
                                                </c:forEach>
                                            </la:select>
                                        </div>
                                    </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

                            }
                    }
                }
            return pairs
                .groupBy({ it.first }, { it.second })
                .mapValues { entry -> entry.value.groupBy({ it.first }, { it.second }) }
        }
    
        private fun readPerformanceTestConfigurations(performanceTestsCiJson: File): List<PerformanceTestConfiguration> {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 29 01:37:22 GMT 2026
    - 17.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

        }
    
        @Test
        public void test_multipleInstances() {
            // Test that multiple instances are independent
            String message1 = "First exception";
            String message2 = "Second exception";
    
            UnsupportedSearchException exception1 = new UnsupportedSearchException(message1);
            UnsupportedSearchException exception2 = new UnsupportedSearchException(message2);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/projects/StageProject.kt

                    spec in SmokeTestProject.pullRequestFeedbackSmokeBuilds
                }
            if (smokeBuildTypes.isNotEmpty()) {
                subProject(SmokeTestProject(model, stage, smokeBuildTypes.map { it.second }))
            }
            nonSmokeBuildTypes.forEach { (_, buildType) ->
                buildType(buildType)
            }
    
            performanceTests =
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            this.cacheTemplateName = cacheTemplateName;
        }
    
        /**
         * Sets the facet cache duration in seconds.
         *
         * @param facetCacheDuration the cache duration in seconds
         */
        public void setFacetCacheDuration(final long facetCacheDuration) {
            this.facetCacheDuration = facetCacheDuration;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  8. architecture/standards/0009-use-american-english.md

    * **Inconsistent API surface**: Public APIs with mixed spelling conventions appear less professional and polished
    * **Harder for non-native speakers**: Contributors and users for whom English is a second language benefit from a single, consistent convention
    
    While both American and British English are valid, establishing a single standard improves consistency, readability, and maintainability of the codebase.
    
    ## Decision
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/job/PythonJob.java

                if (exitValue != 0) {
                    final StringBuilder out = new StringBuilder();
                    if (processTimeout) {
                        out.append("Process is terminated due to ").append(timeout).append(" second exceeded.\n");
                    }
                    out.append("Exit Code: ").append(exitValue).append("\nOutput:\n").append(it.getOutput());
                    throw new JobProcessingException(out.toString());
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

            SystemMonitorTarget target2 = new SystemMonitorTarget();
    
            assertNotNull(target1, "First instance should not be null");
            assertNotNull(target2, "Second instance should not be null");
            assertNotSame(target1, target2, "Instances should be different objects");
        }
    
        @Test
        public void test_class_has_proper_annotations() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
Back to Top