Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 244 for relevant (0.09 sec)

  1. guava-tests/test/com/google/common/graph/ValueGraphTest.java

        graph = ValueGraphBuilder.directed().build();
        IllegalArgumentException e =
            assertThrows(
                IllegalArgumentException.class,
                () -> graph.putEdgeValue(EndpointPair.unordered(1, 2), "irrelevant"));
        assertThat(e).hasMessageThat().contains(ENDPOINTS_MISMATCH);
      }
    
      @Test
      public void putEdgeValue_undirected_orderMismatch() {
        graph = ValueGraphBuilder.undirected().build();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 07 15:57:03 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/path-operation-advanced-configuration.md

    ## OpenAPI-Extra { #openapi-extra }
    
    Wenn Sie in Ihrer Anwendung eine *Pfadoperation* deklarieren, generiert **FastAPI** automatisch die relevanten Metadaten dieser *Pfadoperation*, die in das OpenAPI-Schema aufgenommen werden sollen.
    
    /// note | Technische Details
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/schema-extra-example.md

    ## Detalhes Técnicos { #technical-details }
    
    /// tip | Dica
    
    Se você já está usando o **FastAPI** na versão **0.99.0 ou superior**, você provavelmente pode **pular** esses detalhes.
    
    Eles são mais relevantes para versões antigas, antes de o OpenAPI 3.1.0 estar disponível.
    
    Você pode considerar isto uma breve **aula de história** sobre OpenAPI e JSON Schema. 🤓
    
    ///
    
    /// warning | Atenção
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/schema-extra-example.md

    ## Detalles Técnicos { #technical-details }
    
    /// tip | Consejo
    
    Si ya estás usando la versión **0.99.0 o superior** de **FastAPI**, probablemente puedes **omitir** estos detalles.
    
    Son más relevantes para versiones más antiguas, antes de que OpenAPI 3.1.0 estuviera disponible.
    
    Puedes considerar esto una breve lección de **historia** de OpenAPI y JSON Schema. 🤓
    
    ///
    
    /// warning | Advertencia
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/path-operation-advanced-configuration.md

    ## OpenAPI Extra { #openapi-extra }
    
    Cuando declaras una *path operation* en tu aplicación, **FastAPI** genera automáticamente los metadatos relevantes sobre esa *path operation* para incluirlos en el esquema de OpenAPI.
    
    /// note | Detalles técnicos
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/path-operation-advanced-configuration.md

    ## Extras do OpenAPI { #openapi-extra }
    
    Quando você declara uma *operação de rota* na sua aplicação, o **FastAPI** irá gerar os metadados relevantes da *operação de rota* automaticamente para serem incluídos no esquema do OpenAPI.
    
    /// note | Detalhes Técnicos
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.15.md

        - When upgrading from previous releases, issues will arise with public IPs if multiple clusters share the same resource group. To solve these problems, make the following changes to the cluster:
    Recreate the relevant LoadBalancer services, or add a new tag 'kubernetes-cluster-name: <cluster-name>' manually for existing public IPs.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/body-nested-models.md

    ///
    
    ## Recap { #recap }
    
    With **FastAPI** you have the maximum flexibility provided by Pydantic models, while keeping your code simple, short and elegant.
    
    But with all the benefits:
    
    * Editor support (completion everywhere!)
    * Data conversion (a.k.a. parsing / serialization)
    * Data validation
    * Schema documentation
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  9. MIGRATION.md

    - [ ] Validate NDJSON format
    - [ ] Import documents via Admin UI or API
    - [ ] Verify document count after import
    - [ ] Test search queries on migrated data
    - [ ] Configure document boost/relevance (if needed)
    
    ### Search Integration
    
    - [ ] Enable required APIs (GSA, JSON)
    - [ ] Update client applications with new endpoints
    - [ ] Replace GSS/CSE JavaScript (if applicable)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/CacheBuilderSpecTest.java

        builder.build(CacheLoader.from(Suppliers.ofInstance(null)));
      }
    
      public void testDisableCaching() {
        // Functional test: assert that CacheBuilderSpec.disableCaching()
        // disables caching.  It's irrelevant how it does so.
        CacheBuilder<Object, Object> builder = CacheBuilder.from(CacheBuilderSpec.disableCaching());
        Object key = new Object();
        Object value = new Object();
        LoadingCache<Object, Object> cache =
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 20.8K bytes
    - Viewed (0)
Back to top