Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 252 for un (0.01 seconds)

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

  1. docs/fr/docs/deployment/manually.md

    ## Serveurs ASGI { #asgi-servers }
    
    Allons un peu plus en détail.
    
    FastAPI utilise un standard pour construire des frameworks web Python et des serveurs appelé <abbr title="Asynchronous Server Gateway Interface - Interface passerelle serveur asynchrone">ASGI</abbr>. FastAPI est un framework web ASGI.
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:37
    - 7.4K bytes
    - Click Count (0)
  2. docs/es/docs/tutorial/first-steps.md

    Esa sintaxis `@algo` en Python se llama un "decorador".
    
    Lo pones encima de una función. Como un bonito sombrero decorativo (supongo que de ahí viene el término).
    
    Un "decorador" toma la función de abajo y hace algo con ella.
    
    En nuestro caso, este decorador le dice a **FastAPI** que la función de abajo corresponde al **path** `/` con una **operation** `get`.
    
    Es el "**path operation decorator**".
    
    ///
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:15
    - 13.9K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/first-steps.md

    /// info | `@decorator` Info
    
    Cette syntaxe `@something` en Python est appelée un « décorateur ».
    
    Vous la mettez au-dessus d’une fonction. Comme un joli chapeau décoratif (j’imagine que c’est de là que vient le terme 🤷🏻‍♂).
    
    Un « décorateur » prend la fonction en dessous et fait quelque chose avec.
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:37
    - 15.1K bytes
    - Click Count (0)
  4. docs/es/docs/deployment/manually.md

    ## Servidores ASGI { #asgi-servers }
    
    Vamos a profundizar un poquito en los detalles.
    
    FastAPI usa un estándar para construir frameworks de web y servidores de Python llamado <abbr title="Asynchronous Server Gateway Interface - Interfaz de puerta de enlace de servidor asíncrona">ASGI</abbr>. FastAPI es un framework web ASGI.
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:15
    - 7K bytes
    - Click Count (0)
  5. internal/cachevalue/cache_test.go

    	}
    
    	time.Sleep(3 * time.Second)
    
    	t3, err := cache.GetWithCtx(ctx)
    	if err != nil {
    		t.Fatalf("expected nil err, got %v", err)
    	}
    
    	if t1.Equal(t3) {
    		t.Fatalf("expected time to be un-equal: %s == %s", t1, t3)
    	}
    }
    
    func TestCache(t *testing.T) {
    	cache := New[time.Time]()
    	t.Parallel()
    	cache.InitOnce(2*time.Second, Opts{},
    		func(ctx context.Context) (time.Time, error) {
    Created: 2026-04-05 19:28
    - Last Modified: 2025-04-09 14:28
    - 2.7K bytes
    - Click Count (0)
  6. docs/es/llm-prompt.md

    * key (as in key-value pair, dictionary key): clave
    * array (as in JSON array): array
    * API key: API key (do not translate to "clave API")
    * 100% test coverage: cobertura de tests del 100%
    * back and forth: de un lado a otro
    * I/O (as in "input and output"): I/O (do not translate to "E/S")
    * Machine Learning: Machine Learning (do not translate to "Aprendizaje Automático")
    Created: 2026-04-05 07:19
    - Last Modified: 2025-12-16 16:33
    - 5.4K bytes
    - Click Count (0)
  7. docs/orchestration/kubernetes/README.md

    ## Monitoring MinIO in Kubernetes
    
    MinIO server exposes un-authenticated liveness endpoints so Kubernetes can natively identify unhealthy MinIO containers. MinIO also exposes Prometheus compatible data on a different endpoint to enable Prometheus users to natively monitor their MinIO deployments.
    
    Created: 2026-04-05 19:28
    - Last Modified: 2025-08-12 18:20
    - 1.6K bytes
    - Click Count (0)
  8. docs/metrics/README.md

    ## Healthcheck Probe
    
    MinIO server has two healthcheck related un-authenticated endpoints, a liveness probe to indicate if server is responding, cluster probe to check if server can be taken down for maintenance.
    
    - Liveness probe available at `/minio/health/live`
    Created: 2026-04-05 19:28
    - Last Modified: 2024-02-29 18:35
    - 1.9K bytes
    - Click Count (0)
  9. internal/ioutil/read_file.go

    // as an error to be reported.
    //
    // passes NOATIME flag for reads on Unix systems to avoid atime updates.
    func ReadFile(name string) ([]byte, error) {
    	// Don't wrap with un-needed buffer.
    	// Don't use os.ReadFile, since it doesn't pass NO_ATIME when present.
    	f, err := OsOpenFile(name, readMode, 0o666)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	st, err := f.Stat()
    Created: 2026-04-05 19:28
    - Last Modified: 2023-12-09 18:17
    - 2.3K bytes
    - Click Count (0)
  10. okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/OpenJSSEPlatform.kt

        }
      }
    
      override fun getSelectedProtocol(sslSocket: SSLSocket): String? =
        if (sslSocket is org.openjsse.javax.net.ssl.SSLSocket) {
          when (val protocol = sslSocket.applicationProtocol) {
            // Handles both un-configured and none selected.
            null, "" -> null
    
            else -> protocol
          }
        } else {
          super.getSelectedProtocol(sslSocket)
        }
    
      companion object {
        val isSupported: Boolean =
    Created: 2026-04-03 11:42
    - Last Modified: 2026-01-27 09:00
    - 3.6K bytes
    - Click Count (0)
Back to Top