Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for kendini (0.23 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRoleTypeBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<RoleType> selectPage(CBCall<RoleTypeCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<RoleType>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<RoleTypeCB> cbLambda, EntityRowHandler<RoleType> entityLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FileAuthentication> selectPage(CBCall<FileAuthenticationCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<FileAuthentication>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<FileAuthenticationCB> cbLambda, EntityRowHandler<FileAuthentication> entityLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt

        }
        body.awaitSuccess()
        assertThat(log.take()!!)
          .contains("StreamResetException: stream was reset: CANCEL")
      }
    
      /**
       * We delay sending the last byte of the request body 1500 ms. The 1000 ms read timeout should
       * only elapse 1000 ms after the request body is sent.
       */
      @Test
      fun headersReadTimeoutDoesNotStartUntilLastRequestBodyByteFire() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/LoggingInterceptors.java

        @Override public Response intercept(Chain chain) throws IOException {
          long t1 = System.nanoTime();
          Request request = chain.request();
          logger.info(String.format("Sending request %s on %s%n%s",
              request.url(), chain.connection(), request.headers()));
          Response response = chain.proceed(request);
    
          long t2 = System.nanoTime();
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jan 01 15:55:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsSearchLogBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<SearchLog> selectPage(CBCall<SearchLogCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<SearchLog>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<SearchLogCB> cbLambda, EntityRowHandler<SearchLog> entityLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileConfigBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<FileConfig> selectPage(CBCall<FileConfigCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<FileConfig>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<FileConfigCB> cbLambda, EntityRowHandler<FileConfig> entityLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                    throw new DictionaryException("Failed to write: " + line, e);
                }
            }
    
            /**
             * Commits any pending changes and marks the updater for final write.
             *
             * @return the committed mapping item, or null if no item was pending
             */
            public CharMappingItem commit() {
                isCommit = true;
                if (item != null && item.isUpdated()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

        public void test_fromClassNameToComponentName() {
            // Test with class name ending with Pager
            String componentName = namingConvention.fromClassNameToComponentName("com.example.TestPager");
            assertNotNull(componentName);
            assertEquals("testPager", componentName);
    
            // Test with class name not ending with Pager
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  9. docs/contribute/concurrency.md

    Consider an application streaming a video over http/2. Perhaps the user pauses the video and the application stops reading bytes from this stream. The buffer will fill up, and flow control prevents the server from sending more data on this stream. When the user unpauses her video the buffer drains, the read is acknowledged, and the server proceeds to stream data.
    
    #### Shared reader thread
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/http/SocketFailureTest.kt

              .build(),
          )
        call1.execute().use { response -> response.body.string() }
    
        listener.shouldClose = true
        // Large headers are a likely reason the servers would cut off the connection before it completes sending
        // request headers.
        // 431 "Request Header Fields Too Large"
        val largeHeaders =
          Headers
            .Builder()
            .apply {
              repeat(32) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 21:11:09 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top