Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 982 for serupa (0.03 sec)

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessStandardTransformerTest.java

    package org.codelibs.fess.crawler.transformer;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class FessStandardTransformerTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        @Override
        public void tearDown() throws Exception {
            super.tearDown();
        }
    
        // Basic test to verify test framework is working
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/mapping/CharMappingCreatorTest.java

     */
    package org.codelibs.fess.dict.mapping;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class CharMappingCreatorTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        @Override
        public void tearDown() throws Exception {
            super.tearDown();
        }
    
        // Basic test to verify test framework is working
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsCreatorTest.java

     */
    package org.codelibs.fess.dict.protwords;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class ProtwordsCreatorTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        @Override
        public void tearDown() throws Exception {
            super.tearDown();
        }
    
        // Basic test to verify test framework is working
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. docs/bucket/versioning/README.md

    - All versions, including delete-markers should be deleted before deleting a bucket.
    - **Versioning feature is only available in erasure coded and distributed erasure coded setups**.
    
    ## How to configure versioning on a bucket
    
    Each bucket created has a versioning configuration associated with it. By default bucket is unversioned as shown below
    
    ```
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. .github/workflows/vulncheck.yml

    jobs:
      vulncheck:
        name: Analysis
        runs-on: ubuntu-latest
        steps:
          - name: Check out code into the Go module directory
            uses: actions/checkout@v4
          - name: Set up Go
            uses: actions/setup-go@v5
            with:
              go-version: 1.24.x
              cached: false
          - name: Get official govulncheck
            run: go install golang.org/x/vuln/cmd/govulncheck@latest
            shell: bash
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 24 23:34:11 UTC 2025
    - 682 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

                RenderDataUtil.register(data, "crawlingInfoItems", crawlingInfoService.getCrawlingInfoList(crawlingInfoPager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(crawlingInfoPager, form, op -> op.include("id"));
                });
            });
        }
    
        private HtmlResponse asDetailsHtml() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

                RenderDataUtil.register(data, "failureUrlItems", failureUrlService.getFailureUrlList(failureUrlPager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(failureUrlPager, form, op -> op.include("url", "errorCountMin", "errorCountMax", "errorName"));
                });
            });
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

                RenderDataUtil.register(data, "jobLogItems", jobLogService.getJobLogList(jobLogPager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(jobLogPager, form, op -> op.include("id"));
                });
            });
        }
    
        /**
         * Returns HTML response for the details page.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  9. .github/workflows/maven.yml

    jobs:
      build:
        runs-on: ${{ matrix.os }}
    
        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest]
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 17
          uses: actions/setup-java@v2
          with:
            java-version: '17'
            distribution: 'adopt'
        - name: Build with Maven
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jan 16 08:40:27 UTC 2025
    - 675 bytes
    - Viewed (0)
  10. docs/config/README.md

    ```
    KEY:
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.1K bytes
    - Viewed (1)
Back to top