Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for Tran (0.06 sec)

  1. docs/es/docs/tutorial/security/oauth2-jwt.md

    Por lo tanto, el ladrón no podrá intentar usar esa contraseña en otro sistema (como muchos usuarios usan la misma contraseña en todas partes, esto sería peligroso).
    
    ## Instalar `passlib`
    
    PassLib es un gran paquete de Python para manejar hashes de contraseñas.
    
    Soporta muchos algoritmos de hashing seguros y utilidades para trabajar con ellos.
    
    El algoritmo recomendado es "Bcrypt".
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    you doing out here?  Run home this moment, and fetch me a pair of
    gloves and a fan!  Quick, now!'  And Alice was so much frightened
    that she ran off at once in the direction it pointed to, without
    trying to explain the mistake it had made.
    
      `He took me for his housemaid,' she said to herself as she ran.
    `How surprised he'll be when he finds out who I am!  But I'd
    better take him his fan and gloves--that is, if I can find them.'
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

                    return;
                  } else {
                    // Increment the run counter to avoid the ABA problem of a submitter marking the
                    // thread as QUEUED after it already ran and exhausted the queue before returning
                    // from execute().
                    workerRunCount++;
                    workerRunningState = RUNNING;
                    hasSetRunning = true;
                  }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartReader.kt

            boundaryIndex != -1L -> boundaryIndex // We found the boundary.
            source.buffer.size >= toIndex -> minOf(toIndex, maxByteCount) // No boundary before toIndex.
            else -> throw EOFException() // We ran out of data before we found the required boundary.
          }
        }
    
        @Throws(IOException::class)
        override fun close() {
          if (closed) return
          closed = true
          currentPart = null
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 02:11:14 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/dependencies/index.md

    Esto será especialmente útil cuando lo uses en una **gran base de código** donde uses **las mismas dependencias** una y otra vez en **muchas *path operations***.
    
    ## Usar `async` o no usar `async`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/security/first-steps.md

    /// note | Nota
    
    No importa lo que escribas en el formulario, aún no funcionará. Pero llegaremos allí.
    
    ///
    
    Esto por supuesto no es el frontend para los usuarios finales, pero es una gran herramienta automática para documentar interactivamente toda tu API.
    
    Puede ser utilizada por el equipo de frontend (que también puedes ser tú mismo).
    
    Puede ser utilizada por aplicaciones y sistemas de terceros.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/events.md

    Pero `open()` no usa `async` y `await`.
    
    Por eso, declaramos la función manejadora del evento con `def` estándar en vez de `async def`.
    
    ///
    
    ### `startup` y `shutdown` juntos
    
    Hay una gran posibilidad de que la lógica para tu *startup* y *shutdown* esté conectada, podrías querer iniciar algo y luego finalizarlo, adquirir un recurso y luego liberarlo, etc.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt

        val skipBuffer = Buffer()
        while (read(skipBuffer, 8192) != -1L) {
          skipBuffer.clear()
        }
        true // Success! The source has been exhausted.
      } catch (_: InterruptedIOException) {
        false // We ran out of time before exhausting the source.
      } finally {
        if (originalDurationNs == Long.MAX_VALUE) {
          timeout().clearDeadline()
        } else {
          timeout().deadlineNanoTime(nowNs + originalDurationNs)
        }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  9. docs/es/docs/help-fastapi.md

    ### Entiende la pregunta
    
    * Revisa si puedes entender cuál es el **propósito** y el caso de uso de la persona que pregunta.
    
    * Luego revisa si la pregunta (la gran mayoría son preguntas) es **clara**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  10. docs/es/docs/advanced/settings.md

    ## Pydantic `Settings`
    
    Afortunadamente, Pydantic proporciona una gran utilidad para manejar estas configuraciones provenientes de variables de entorno con <a href="https://docs.pydantic.dev/latest/concepts/pydantic_settings/" class="external-link" target="_blank">Pydantic: Settings management</a>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top