Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for sentinela (0.09 seconds)

  1. docs/pt/docs/tutorial/server-sent-events.md

    Se você precisar enviar dados sem codificação JSON, use `raw_data` em vez de `data`.
    
    Isto é útil para enviar texto pré-formatado, linhas de log ou valores <dfn title="um valor usado para indicar uma condição ou estado especial">"sentinela"</dfn> especiais como `[DONE]`.
    
    {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *}
    
    /// note | Nota
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/server-sent-events.md

    Das ist nützlich zum Senden vorformatierter Texte, Logzeilen oder spezieller <dfn title="Ein Wert, der verwendet wird, um eine besondere Bedingung oder einen besonderen Zustand anzuzeigen">„Sentinel“</dfn>-Werte wie `[DONE]`.
    
    {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *}
    
    /// note | Hinweis
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  3. fastapi/datastructures.py

        It's used internally to recognize when a default value has been overwritten, even
        if the overridden default value was truthy.
        """
        return DefaultPlaceholder(value)  # type: ignore
    
    
    # Sentinel for "parameter not provided" in Param/FieldInfo.
    # Typed as None to satisfy ty
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/server-sent-events.md

    Esto es útil para enviar texto preformateado, líneas de log, o valores especiales de <dfn title="Un valor usado para indicar una condición o estado especial">"centinela"</dfn> como `[DONE]`.
    
    {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *}
    
    /// note | Nota
    
    `data` y `raw_data` son mutuamente excluyentes. Solo puedes establecer uno de ellos en cada `ServerSentEvent`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 5K bytes
    - Click Count (0)
  5. docs/en/docs/tutorial/server-sent-events.md

    If you need to send data **without** JSON encoding, use `raw_data` instead of `data`.
    
    This is useful for sending pre-formatted text, log lines, or special <dfn title="A value used to indicate a special condition or state">"sentinel"</dfn> values like `[DONE]`.
    
    {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *}
    
    /// note
    
    `data` and `raw_data` are mutually exclusive. You can only set one of them on each `ServerSentEvent`.
    
    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)
  6. internal/lru/lru.go

    // The zero Value for LruList is an empty list ready to use.
    type LruList[K comparable, V any] struct {
    	root Entry[K, V] // sentinel list element, only &root, root.prev, and root.next are used
    	len  int         // current list Length excluding (this) sentinel element
    }
    
    // Init initializes or clears list l.
    func (l *LruList[K, V]) Init() *LruList[K, V] {
    	l.root.next = &l.root
    	l.root.prev = &l.root
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:35:55 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/server-sent-events.md

    C’est utile pour envoyer du texte préformaté, des lignes de log, ou des valeurs <dfn title="Une valeur utilisée pour indiquer une condition ou un état particulier">« sentinelle »</dfn> spéciales comme `[DONE]`.
    
    {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *}
    
    /// note | Remarque
    
    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)
  8. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * <p>Only runs of two or more hextets are considered. In case of a tie, the leftmost run wins. If
       * a qualifying run is found, its hextets are replaced by the sentinel value -1.
       *
       * @param hextets {@code int[]} mutable array of eight 16-bit hextets
       */
      private static void compressLongestRunOfZeroes(int[] hextets) {
        int bestRunStart = -1;
        int bestRunLength = -1;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 47.7K bytes
    - Click Count (0)
Back to Top