Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,881 for using (0.04 sec)

  1. docs/en/docs/advanced/path-operation-advanced-configuration.md

    ```Python hl_lines="6"
    {!../../docs_src/path_operation_advanced_configuration/tutorial001.py!}
    ```
    
    ### Using the *path operation function* name as the operationId
    
    If you want to use your APIs' function names as `operationId`s, you can iterate over all of them and override each *path operation's* `operation_id` using their `APIRoute.name`.
    
    You should do it after adding all your *path operations*.
    
    ```Python hl_lines="2  12-21  24"
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-06 20:36
    - 7.6K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

        return emptySet();
      }
    
      protected Collection<Method> suppressForPriorityQueue() {
        return emptySet();
      }
    
      public Test testsForArrayDeque() {
        return QueueTestSuiteBuilder.using(
                new TestStringQueueGenerator() {
                  @Override
                  public Queue<String> create(String[] elements) {
                    return new ArrayDeque<>(MinimalCollection.of(elements));
                  }
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-10-30 16:15
    - 7.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MultisetsCollectionTest.java

                .createTestSuite());
    
        suite.addTest(
            MultisetTestSuiteBuilder.using(unionGenerator())
                .withFeatures(CollectionSize.ANY, CollectionFeature.ALLOWS_NULL_VALUES)
                .named("Multisets.union")
                .createTestSuite());
    
        suite.addTest(
            MultisetTestSuiteBuilder.using(intersectionGenerator())
                .withFeatures(
                    CollectionSize.ANY,
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-10-30 16:15
    - 9.6K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    # FastAPI in Containers - Docker
    
    When deploying FastAPI applications a common approach is to build a **Linux container image**. It's normally done using <a href="https://www.docker.com/" class="external-link" target="_blank">**Docker**</a>. You can then deploy that container image in one of a few possible ways.
    
    Using Linux containers has several advantages including **security**, **replicability**, **simplicity**, and others.
    
    /// tip
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-09-18 16:09
    - 28.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/TreeTraverser.java

     * <pre>{@code
     * // won't work
     * TreeTraverser<NodeType> traverser = node -> node.getChildNodes();
     * }</pre>
     *
     * Instead, you can pass a lambda expression to the {@code using} factory method:
     *
     * <pre>{@code
     * TreeTraverser<NodeType> traverser = TreeTraverser.using(node -> node.getChildNodes());
     * }</pre>
     *
     * @author Louis Wasserman
     * @since 15.0
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-10-30 16:15
    - 8.9K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/get-current-user.md

    You can now get the current user directly in the *path operation functions* and deal with the security mechanisms at the **Dependency Injection** level, using `Depends`.
    
    And you can use any model or data for the security requirements (in this case, a Pydantic model `User`).
    
    But you are not restricted to using some specific data model, class or type.
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-06 20:36
    - 7.4K bytes
    - Viewed (0)
  7. README.md

    `33.3.1-android`. For more about depending on Guava, see
    [using Guava in your build].
    
    To add a dependency on Guava using Maven, use the following:
    
    ```xml
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>33.3.1-jre</version>
      <!-- or, for Android: -->
      <version>33.3.1-android</version>
    </dependency>
    ```
    
    To add a dependency using Gradle:
    
    ```gradle
    dependencies {
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-09-24 18:34
    - 5.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MultisetsCollectionTest.java

                .createTestSuite());
    
        suite.addTest(
            MultisetTestSuiteBuilder.using(unionGenerator())
                .withFeatures(CollectionSize.ANY, CollectionFeature.ALLOWS_NULL_VALUES)
                .named("Multisets.union")
                .createTestSuite());
    
        suite.addTest(
            MultisetTestSuiteBuilder.using(intersectionGenerator())
                .withFeatures(
                    CollectionSize.ANY,
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-10-30 16:15
    - 9.6K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

     */
    @Deprecated(since = "4.0.0")
    public class ObjectBasedValueSource extends AbstractValueSource {
    
        private final Object root;
    
        /**
         * Construct a new value source, using the supplied object as the root from
         * which to start, and using expressions split at the dot ('.') to navigate
         * the object graph beneath this root.
         * @param root the root of the graph.
         */
        public ObjectBasedValueSource(Object root) {
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 3.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Hashing.java

       * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}.
       *
       * @since 15.0
       */
      public static HashFunction sipHash24() {
        return SipHashFunction.SIP_HASH_24;
      }
    
      /**
       * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
       * SipHash-2-4 algorithm</a> using the given seed.
       *
       * @since 15.0
       */
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-07-19 16:02
    - 29.3K bytes
    - Viewed (0)
Back to top