Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 245 for test_2 (0.47 seconds)

  1. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

        //                                                                        ============
    
        @Test
        public void test_Status_OK() {
            assertEquals(0, Status.OK.getId());
        }
    
        @Test
        public void test_Status_BAD_REQUEST() {
            assertEquals(1, Status.BAD_REQUEST.getId());
        }
    
        @Test
        public void test_Status_SYSTEM_ERROR() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

            result = (String) method.invoke(keyMatchHelper, "");
            assertEquals("", result);
    
            result = (String) method.invoke(keyMatchHelper, "Test123");
            assertEquals("test123", result);
        }
    
        @Test
        public void test_buildQuery_caseSensitivity() {
            List<String> keywordList = Arrays.asList("Java", "JAVA", "java");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.test-retry.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("org.gradle.test-retry")
    }
    
    if (System.getenv().containsKey("CI")) {
        tasks.withType<Test>().configureEach {
            retry {
                maxRetries.set(2)
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Apr 26 06:43:17 GMT 2023
    - 810 bytes
    - Click Count (0)
  4. .github/workflows/update-perf-test-buckets.yml

              branch-suffix: timestamp
              delete-branch: true
              title: 'Update performance test durations'
              signoff: true
              sign-commits: true
              labels: |
                in:building-gradle
                @dev-productivity
              body: |
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import com.gradle.develocity.agent.gradle.test.DevelocityTestConfiguration
    import gradlebuild.archtest.PackageCyclesExtension
    
    plugins {
        `jvm-test-suite`
        id("gradlebuild.dependency-modules")
        id("gradlebuild.code-quality")
        id("gradlebuild.jvm-compile")
    }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 08:11:56 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java

            pager.sessionId = "test-session-123";
            assertEquals("test-session-123", pager.sessionId);
        }
    
        @Test
        public void test_crawlingInfoPager_setId() {
            final CrawlingInfoPager pager = new CrawlingInfoPager();
            pager.id = "crawling-id-456";
            assertEquals("crawling-id-456", pager.id);
        }
    
        @Test
        public void test_crawlingInfoPager_pageSize() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/pager/JobLogPagerTest.java

            assertEquals(pageNumberList, jobLogPager.getPageNumberList());
    
        }
    
        public void test_clear() {
            JobLogPager jobLogPager = new JobLogPager();
            jobLogPager.id = "testId";
            jobLogPager.jobName = "testJobName";
            jobLogPager.jobStatus = "running";
            jobLogPager.target = "all";
            jobLogPager.scriptType = "groovy";
            jobLogPager.setAllRecordCount(100);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/app/pager/WebAuthPagerTest.java

            assertEquals(pageNumberList, webAuthPager.getPageNumberList());
    
        }
    
        public void test_clear() {
            WebAuthPager webAuthPager = new WebAuthPager();
            webAuthPager.id = "testId";
            webAuthPager.port = "8080";
            webAuthPager.username = "testUser";
            webAuthPager.webConfigId = "webConfig1";
            webAuthPager.versionNo = "1";
            webAuthPager.setAllRecordCount(100);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  9. .github/CODEOWNERS

    testing/smoke-test/                             @gradle/bt-product-operations
    testing/smoke-test/src/**/*IsolatedProjects*    @gradle/bt-product-operations @gradle/bt-isolated-projects-project
    testing/soak/                                   @gradle/bt-developer-productivity
    testing/distributions-integ-tests               @gradle/bt-developer-productivity
    testing/public-api-tests                        @gradle/bt-developer-productivity
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

                updateProperties {
                    setProperty("latests", latestKotlinVersions.joinToString(","))
                }
                updateCompatibilityDoc(
                    compatibilityDocFile,
                    "Gradle is tested with Kotlin",
                    latestKotlinVersions.first(),
                    latestKotlinVersions.last()
                )
            }
    
        private
        fun fetchLatestKotlinVersions() =
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Oct 29 08:29:55 GMT 2025
    - 4.3K bytes
    - Click Count (0)
Back to Top