Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 501 - 510 of 623 for iterables (0.06 seconds)

  1. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        try {
          tester
              .forAllPublicStaticMethods(BadNullsFactory.class)
              .thatReturn(Iterable.class)
              .testNulls();
        } catch (AssertionError expected) {
          assertThat(expected)
              .hasMessageThat()
              .isEqualTo(
                  "No public static methods that return java.lang.Iterable or subtype are found in "
                      + BadNullsFactory.class
                      + ".");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 36.3K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/Optional.java

       *
       * <p><b>Java 9 users:</b> use {@code optionals.stream().flatMap(Optional::stream)} instead.
       *
       * @since 11.0 (generics widened in 13.0)
       */
      public static <T> Iterable<T> presentInstances(
          Iterable<? extends Optional<? extends T>> optionals) {
        checkNotNull(optionals);
        return () ->
            new AbstractIterator<T>() {
              private final Iterator<? extends Optional<? extends T>> iterator =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jun 04 13:03:16 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  3. docs/es/docs/tutorial/server-sent-events.md

    FastAPI se asegurará de ejecutarlo correctamente para que no bloquee el event loop.
    
    Como en este caso la función no es async, el tipo de retorno correcto sería `Iterable[Item]`:
    
    {* ../../docs_src/server_sent_events/tutorial001_py310.py ln[28:31] hl[29] *}
    
    ### Sin tipo de retorno { #no-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 5K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/server-sent-events.md

    FastAPI will make sure it's run correctly so that it doesn't block the event loop.
    
    As in this case the function is not async, the right return type would be `Iterable[Item]`:
    
    {* ../../docs_src/server_sent_events/tutorial001_py310.py ln[28:31] hl[29] *}
    
    ### No Return Type { #no-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. docs/en/docs/tutorial/stream-json-lines.md

    FastAPI will make sure it's run correctly so that it doesn't block the event loop.
    
    As in this case the function is not async, the right return type would be `Iterable[Item]`:
    
    {* ../../docs_src/stream_json_lines/tutorial001_py310.py ln[27:30] hl[28] *}
    
    ### No Return Type { #no-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  6. guava/src/com/google/common/base/CharMatcher.java

      /**
       * Returns {@code true} if a character sequence contains at least one matching BMP character.
       * Equivalent to {@code !matchesNoneOf(sequence)}.
       *
       * <p>The default implementation iterates over the sequence, invoking {@link #matches} for each
       * character, until this returns {@code true} or the end is reached.
       *
       * @param sequence the character sequence to examine, possibly empty
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  7. docs/ko/docs/tutorial/stream-json-lines.md

    ///
    
    ### 비동기 아님 *경로 처리 함수* { #non-async-path-operation-functions }
    
    일반 `def` 함수(`async` 없이)도 사용할 수 있으며, 동일하게 `yield`를 사용할 수 있습니다.
    
    FastAPI가 이벤트 루프를 막지 않도록 올바르게 실행되게 보장합니다.
    
    이 경우 함수가 async가 아니므로, 올바른 반환 타입은 `Iterable[Item]`입니다:
    
    {* ../../docs_src/stream_json_lines/tutorial001_py310.py ln[27:30] hl[28] *}
    
    ### 반환 타입 생략 { #no-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/stream-json-lines.md

    ///
    
    ### 非异步的*路径操作函数* { #non-async-path-operation-functions }
    
    你也可以使用常规的 `def` 函数(不带 `async`),并以同样的方式使用 `yield`。
    
    FastAPI 会确保其正确运行,不会阻塞事件循环。
    
    因为这个函数不是异步的,合适的返回类型是 `Iterable[Item]`:
    
    {* ../../docs_src/stream_json_lines/tutorial001_py310.py ln[27:30] hl[28] *}
    
    ### 无返回类型 { #no-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/SortedSetMultimap.java

       * {@link Multimap} interface.
       *
       * <p>Any duplicates in {@code values} will be stored in the multimap once.
       */
      @CanIgnoreReturnValue
      @Override
      SortedSet<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values);
    
      /**
       * Returns a map view that associates each key with the corresponding values in the multimap.
       * Changes to the returned map, such as element removal, will update the underlying multimap. The
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 5.2K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/server-sent-events.md

    FastAPI s’assure qu’elles s’exécutent correctement pour ne pas bloquer la boucle d’événements.
    
    Dans ce cas la fonction n’est pas async, le type de retour approprié serait `Iterable[Item]` :
    
    {* ../../docs_src/server_sent_events/tutorial001_py310.py ln[28:31] hl[29] *}
    
    ### Sans type de retour { #no-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 5.3K bytes
    - Click Count (0)
Back to Top