Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for getStream (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt

            }
          }
        }
      }
    
      /**
       * Returns the number of [open streams][Http2Stream.isOpen] on this connection.
       */
      fun openStreamCount(): Int = withLock { streams.size }
    
      fun getStream(id: Int): Http2Stream? = withLock { streams[id] }
    
      internal fun removeStream(streamId: Int): Http2Stream? {
        withLock {
          val stream = streams.remove(streamId)
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 31.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/llm/LlmChatRequestTest.java

        }
    
        @Test
        public void test_setStream() {
            final LlmChatRequest request = new LlmChatRequest();
    
            final LlmChatRequest result = request.setStream(true);
    
            assertSame(request, result);
            assertTrue(request.isStream());
        }
    
        @Test
        public void test_fluentBuilding() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

            }
            final String context = buildContext(documents, "answer");
            final LlmChatRequest request = buildStreamingRequest(userMessage, context, history);
            request.setStream(true);
    
            streamChatWithConcurrencyControl(request, callback);
        }
    
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/llm/LlmChatRequest.java

        }
    
        /**
         * Sets whether streaming is enabled.
         *
         * @param stream true to enable streaming
         * @return this request for method chaining
         */
        public LlmChatRequest setStream(final boolean stream) {
            this.stream = stream;
            return this;
        }
    
        /**
         * Gets the thinking budget for models that support thinking tokens.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 03:38:31 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  5. docs/en/docs/release-notes.md

    * Add external link [Apache Kafka producer and consumer with FastAPI and aiokafka](https://iwpnd.pw/articles/2020-03/apache-kafka-fastapi-geostream) to docs. PR [#1112](https://github.com/tiangolo/fastapi/pull/1112) by [@iwpnd](https://github.com/iwpnd).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top