Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 239 for playing (0.27 sec)

  1. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        public List<CrawlingInfo> getCrawlingInfoList(final CrawlingInfoPager crawlingInfoPager) {
    
            final PagingResultBean<CrawlingInfo> crawlingInfoList = crawlingInfoBhv.selectPage(cb -> {
                cb.paging(crawlingInfoPager.getPageSize(), crawlingInfoPager.getCurrentPageNumber());
                setupListCondition(cb, crawlingInfoPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.dream.SpecifiedColumn;
    import org.dbflute.cbean.exception.ConditionBeanExceptionThrower;
    import org.dbflute.cbean.ordering.OrderByBean;
    import org.dbflute.cbean.paging.PagingBean;
    import org.dbflute.cbean.paging.PagingInvoker;
    import org.dbflute.cbean.scoping.AndQuery;
    import org.dbflute.cbean.scoping.ModeQuery;
    import org.dbflute.cbean.scoping.OrQuery;
    import org.dbflute.cbean.scoping.UnionQuery;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.dream.SpecifiedColumn;
    import org.dbflute.cbean.exception.ConditionBeanExceptionThrower;
    import org.dbflute.cbean.ordering.OrderByBean;
    import org.dbflute.cbean.paging.PagingBean;
    import org.dbflute.cbean.paging.PagingInvoker;
    import org.dbflute.cbean.scoping.AndQuery;
    import org.dbflute.cbean.scoping.ModeQuery;
    import org.dbflute.cbean.scoping.OrQuery;
    import org.dbflute.cbean.scoping.UnionQuery;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/BadWordService.java

        protected FessConfig fessConfig;
    
        public List<BadWord> getBadWordList(final BadWordPager badWordPager) {
    
            final PagingResultBean<BadWord> badWordList = badWordBhv.selectPage(cb -> {
                cb.paging(badWordPager.getPageSize(), badWordPager.getCurrentPageNumber());
                setupListCondition(cb, badWordPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 25 */
        String PAGING_PAGE_SIZE = "paging.page.size";
    
        /** The key of the configuration. e.g. 5 */
        String PAGING_PAGE_RANGE_SIZE = "paging.page.range.size";
    
        /** The key of the configuration. e.g. true */
        String PAGING_PAGE_RANGE_FILL_LIMIT = "paging.page.range.fill.limit";
    
        /** The key of the configuration. e.g. 1000 */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  6. docs/logging/README.md

    topic            (string)    Kafka topic used for bucket notifications
    sasl_username    (string)    username for SASL/PLAIN or SASL/SCRAM authentication
    sasl_password    (string)    password for SASL/PLAIN or SASL/SCRAM authentication
    sasl_mechanism   (string)    sasl authentication mechanism, default 'plain'
    tls_client_auth  (string)    clientAuth determines the Kafka server's policy for TLS client auth
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Aug 15 23:04:20 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

        assertFailsWith<IllegalArgumentException> {
          Request.Builder().method("GET", "abc".toRequestBody("text/plain".toMediaType()))
        }
      }
    
      @Test
      fun head() {
        server.enqueue(
          MockResponse(
            headers = headersOf("Content-Type", "text/plain"),
          ),
        )
        val request =
          Request.Builder()
            .url(server.url("/"))
            .head()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

        public List<FileConfig> getFileConfigList(final FileConfigPager fileConfigPager) {
    
            final PagingResultBean<FileConfig> fileConfigList = fileConfigBhv.selectPage(cb -> {
                cb.paging(fileConfigPager.getPageSize(), fileConfigPager.getCurrentPageNumber());
                setupListCondition(cb, fileConfigPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/JobLogService.java

        public List<JobLog> getJobLogList(final JobLogPager jobLogPager) {
    
            final PagingResultBean<JobLog> jobLogList = jobLogBhv.selectPage(cb -> {
                cb.paging(jobLogPager.getPageSize(), jobLogPager.getCurrentPageNumber());
                setupListCondition(cb, jobLogPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

    @Tag("Slowish")
    class MultipartReaderTest {
      @Test fun `parse multipart`() {
        val multipart =
          """
          |--simple boundary
          |Content-Type: text/plain; charset=utf-8
          |Content-ID: abc
          |
          |abcd
          |efgh
          |--simple boundary
          |Content-Type: text/plain; charset=utf-8
          |Content-ID: ijk
          |
          |ijkl
          |mnop
          |
          |--simple boundary--
          """.trimMargin()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 13.8K bytes
    - Viewed (0)
Back to top