Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 750 for lists (0.02 sec)

  1. docs/pt/docs/tutorial/query-params-str-validations.md

      ]
    }
    ```
    
    #### Usando `list`
    
    Você também pode utilizar o tipo `list` diretamente em vez de `List[str]`:
    
    {* ../../docs_src/query_params_str_validations/tutorial013.py hl[7] *}
    
    /// note | Observação
    
    Tenha em mente que neste caso, o FastAPI não irá validar os conteúdos da lista.
    
    Por exemplo, um `List[int]` iria validar (e documentar) que os contéudos da lista são números inteiros. Mas apenas `list` não.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.12.md

    - Upon receiving a LIST request with an expired continue token, the apiserver now returns a continue token together with the 410 "the from parameter is too old" error. If the client does not care about getting a list from a consistent snapshot, the client can use this token to continue listing from the next key, but the returned chunk will be from the latest snapshot....
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. 3600 <br>
         * comment: Maximum number of empty lists for webfs in the indexer.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexerWebfsMaxEmptyListCount();
    
        /**
         * Get the value for the key 'indexer.webfs.max.empty.list.count' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.8.md

    /pull/51921))
    
    * [Alpha] The Kubernetes API server now supports the ability to break large LIST calls into multiple smaller chunks. A client can specify a limit to the number of results to return. If more results exist, a token is returned that allows the client to continue the previous list call repeatedly until all results are retrieved.  The resulting list is identical to a list call that does not perform chunking, thanks to capabilities provided by etcd3.  This allows the server to...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/cors.md

    Para lograr esto, el backend `:80` debe tener una lista de "orígenes permitidos".
    
    En este caso, la lista tendría que incluir `http://localhost:8080` para que el frontend `:8080` funcione correctamente.
    
    ## Comodines
    
    También es posible declarar la lista como `"*"` (un "comodín") para decir que todos están permitidos.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            return channels.values()
                    .stream()
                    .filter(ChannelInfo::isHealthy)
                    .collect(ArrayList::new, (list, item) -> list.add(item), (list1, list2) -> list1.addAll(list2));
        }
    
        /**
         * Select a channel for the given message
         *
         * @param message message to send
         * @return selected channel
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_pl.properties

    labels.joblog_delete_all_cancel=Anuluj
    labels.dict_configuration=Lista słowników
    labels.dict_list_title=Lista słowników
    labels.dict_list_link=Słownik
    labels.dictionary_name=Nazwa
    labels.dictionary_type=Typ
    labels.dict_synonym_configuration=Lista synonimów
    labels.dict_synonym_title=Lista synonimów
    labels.dict_synonym_list_link=Lista
    labels.dict_synonym_link_create=Utwórz nowy
    labels.dict_synonym_link_edit=Edytuj
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_it.properties

    labels.joblog_delete_all_cancel=Annulla
    labels.dict_configuration=Lista dizionari
    labels.dict_list_title=Lista dizionari
    labels.dict_list_link=Dizionario
    labels.dictionary_name=Nome
    labels.dictionary_type=Tipo
    labels.dict_synonym_configuration=Lista sinonimi
    labels.dict_synonym_title=Lista sinonimi
    labels.dict_synonym_list_link=Lista
    labels.dict_synonym_link_create=Crea nuovo
    labels.dict_synonym_link_edit=Modifica
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_es.properties

    labels.joblog_delete_all_cancel=Cancelar
    labels.dict_configuration=Lista de diccionarios
    labels.dict_list_title=Lista de diccionarios
    labels.dict_list_link=Diccionario
    labels.dictionary_name=Nombre
    labels.dictionary_type=Tipo
    labels.dict_synonym_configuration=Lista de sinónimos
    labels.dict_synonym_title=Lista de sinónimos
    labels.dict_synonym_list_link=Lista
    labels.dict_synonym_link_create=Crear nuevo
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/query-params-str-validations.md

        "bar"
      ]
    }
    ```
    
    #### `list` alleine verwenden
    
    Sie können auch `list` direkt verwenden, anstelle von `List[str]` (oder `list[str]` in Python 3.9+):
    
    {* ../../docs_src/query_params_str_validations/tutorial013_an_py39.py hl[9] *}
    
    /// note | Hinweis
    
    Beachten Sie, dass FastAPI in diesem Fall den Inhalt der Liste nicht überprüft.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Feb 15 16:23:59 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top