Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 577 for Live (0.03 sec)

  1. .github/ISSUE_TEMPLATE/bug_report.md

    1. ## Possible Solution
    2. <!--- Not obligatory, but suggest a fix/reason for the bug, -->
    3. <!--- or ideas how to implement the addition or change -->
    4.  
    5. ## Steps to Reproduce (for bugs)
    6. <!--- Provide a link to a live example, or an unambiguous set of steps to -->
    7. <!--- reproduce this bug. Include code to reproduce, if relevant -->
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 20 17:37:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/body-nested-models.md

    1. "name": "Foo",
    2. "description": "The pretender",
    3. "price": 42.0,
    4. "tax": 3.2,
    5. "tags": ["rock", "metal", "bar"],
    6. "image": {
    7. "url": "http://example.com/baz.jpg",
    8. "name": "The Foo live"
    9. }
    10. }
    11. ```
    12.  
    13. Wiederum, nur mit dieser Deklaration erhalten Sie von **FastAPI**:
    14.  
    15. * Editor-Unterstützung (Codevervollständigung, usw.), selbst für verschachtelte Modelle
    16. * Datenkonvertierung
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/Graph.java

    1. *
    2. * @since 29.0
    3. */
    4. @Override
    5. ElementOrder<N> incidentEdgeOrder();
    6.  
    7. //
    8. // Element-level accessors
    9. //
    10.  
    11. /**
    12. * Returns a live view of the nodes which have an incident edge in common with {@code node} in
    13. * this graph.
    14. *
    15. * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
    16. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/Graph.java

    1. *
    2. * @since 29.0
    3. */
    4. @Override
    5. ElementOrder<N> incidentEdgeOrder();
    6.  
    7. //
    8. // Element-level accessors
    9. //
    10.  
    11. /**
    12. * Returns a live view of the nodes which have an incident edge in common with {@code node} in
    13. * this graph.
    14. *
    15. * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
    16. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. docs/metrics/README.md

    1. 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.
    2.  
    3. - Liveness probe available at `/minio/health/live`
    4. - Cluster probe available at `/minio/health/cluster`
    5.  
    6. Read more on how to use these endpoints in [MinIO healthcheck guide](https://github.com/minio/minio/blob/master/docs/metrics/healthcheck/README.md).
    7.  
    8. ## Prometheus Probe
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/ResponseJvmTest.kt

    1. assertThat(response.trailers()).isEmpty()
    2. }
    3.  
    4. @Test
    5. fun testFailsIfTrailersNotSet() {
    6. val response =
    7. newResponse("".toResponseBody()) {
    8. // All live paths (Http1, Http2) in OkHttp do this
    9. trailers { error("trailers not available") }
    10. }
    11.  
    12. assertFailsWith<IllegalStateException>(message = "trailers not available") {
    13. response.trailers()
    14. }
    15. }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. cmd/healthcheck-router.go

    1. package cmd
    2.  
    3. import (
    4. "net/http"
    5.  
    6. "github.com/minio/mux"
    7. )
    8.  
    9. const (
    10. healthCheckPath = "/health"
    11. healthCheckLivenessPath = "/live"
    12. healthCheckReadinessPath = "/ready"
    13. healthCheckClusterPath = "/cluster"
    14. healthCheckClusterReadPath = "/cluster/read"
    15. healthCheckPathPrefix = minioReservedBucketPath + healthCheckPath
    16. )
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jan 23 11:12:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/body-nested-models.md

    1. "name": "Foo",
    2. "description": "The pretender",
    3. "price": 42.0,
    4. "tax": 3.2,
    5. "tags": ["rock", "metal", "bar"],
    6. "image": {
    7. "url": "http://example.com/baz.jpg",
    8. "name": "The Foo live"
    9. }
    10. }
    11. ```
    12.  
    13. Ещё раз: сделав такое объявление, с помощью **FastAPI** вы получите:
    14.  
    15. * Поддержку редакторов IDE (автодополнение и т.д), даже для вложенных моделей
    16. * Преобразование данных
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. docs/ko/docs/tutorial/body-nested-models.md

    1. "name": "Foo",
    2. "description": "The pretender",
    3. "price": 42.0,
    4. "tax": 3.2,
    5. "tags": ["rock", "metal", "bar"],
    6. "image": {
    7. "url": "http://example.com/baz.jpg",
    8. "name": "The Foo live"
    9. }
    10. }
    11. ```
    12.  
    13. 다시 한번, **FastAPI**를 사용하여 해당 선언을 함으로써 얻는 것은:
    14.  
    15. * 중첩 모델도 편집기 지원(자동완성 등)
    16. * 데이터 변환
    17. * 데이터 검증
    18. * 자동 문서화
    19.  
    20. ## 특별한 타입과 검증
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body-nested-models.md

    1. "name": "Foo",
    2. "description": "The pretender",
    3. "price": 42.0,
    4. "tax": 3.2,
    5. "tags": ["rock", "metal", "bar"],
    6. "image": {
    7. "url": "http://example.com/baz.jpg",
    8. "name": "The Foo live"
    9. }
    10. }
    11. ```
    12.  
    13. Again, doing just that declaration, with **FastAPI** you get:
    14.  
    15. * Editor support (completion, etc.), even for nested models
    16. * Data conversion
    17. * Data validation
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top