Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for gabe (0.15 sec)

  1. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

              And mentioned me to him:
            She gave me a good character,
              But said I could not swim.
    
            He sent them word I had not gone
              (We know it to be true):
            If she should push the matter on,
              What would become of you?
    
            I gave her one, they gave him two,
              You gave us three or more;
            They all returned from him to you,
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Removed the generally available feature gate `ExpandedDNSConfig`.
       ([#122086](https://github.com/kubernetes/kubernetes/pull/122086), [@bzsuni](https://github.com/bzsuni))
    - Removed the generally available feature gate `KubeletPodResourcesGetAllocatable`.
       ([#122138](https://github.com/kubernetes/kubernetes/pull/122138), [@ii2day](https://github.com/ii2day))
    - Removed the generally available feature gate `KubeletPodResources`.
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  3. docs/pt/docs/async.md

        return results
    ```
    
    ---
    
    Se sua aplicação (de alguma forma) não tem que se comunicar com nada mais e tem que esperar que o respondam, use `async def`.
    
    ---
    
    Se você simplesmente não sabe, use apenas `def`.
    
    ---
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // if they encounter an unrecognized policy in this field.
      //
      // This field is beta-level. The eviction API uses this field when
      // the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).
      // +optional
      optional string unhealthyPodEvictionPolicy = 4;
    }
    
    // PodDisruptionBudgetStatus represents information about the status of a
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
      // alpha feature gate HPAScaleToZero is enabled and at least one Object or External
      // metric is configured.  Scaling is active as long as at least one metric value is
      // available.
      // +optional
      optional int32 minReplicas = 2;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
      // alpha feature gate HPAScaleToZero is enabled and at least one Object or External
      // metric is configured.  Scaling is active as long as at least one metric value is
      // available.
      // +optional
      optional int32 minReplicas = 2;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/background-tasks.md

    O **FastAPI** sabe o que fazer em cada caso e como reutilizar o mesmo objeto, de forma que todas as tarefas em segundo plano sejam mescladas e executadas em segundo plano posteriormente:
    
    ```Python hl_lines="13  15  22  25"
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Mon May 09 23:44:32 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      optional int32 minReadySeconds = 9;
    
      // PersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from
      // the StatefulSet VolumeClaimTemplates. This requires the
      // StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha.
      // +optional
      optional StatefulSetPersistentVolumeClaimRetentionPolicy persistentVolumeClaimRetentionPolicy = 10;
    
      // ordinals controls the numbering of replica indices in a StatefulSet. The
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment.md

    ### Anote sua versão `fastapi`
    
    A primeira coisa que você deve fazer é "fixar" a versão do **FastAPI** que está utilizando para a última versão específica que você sabe que funciona corretamente para a sua aplicação.
    
    Por exemplo, vamos dizer que você esteja utilizando a versão `0.45.0` no seu _app_.
    
    Se você usa um arquivo `requirements.txt`, dá para especificar a versão assim:
    
    ```txt
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Aug 18 16:16:54 GMT 2022
    - 16.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

        So it won't affect performance. ⚡
    
    ### Include an `APIRouter` with a custom `prefix`, `tags`, `responses`, and `dependencies`
    
    Now, let's imagine your organization gave you the `app/internal/admin.py` file.
    
    It contains an `APIRouter` with some admin *path operations* that your organization shares between several projects.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top