Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 824 for nope (0.06 sec)

  1. android/guava-tests/test/com/google/common/collect/ListsTest.java

        // The result of Arrays.asList() is mutable
        otherWay.set(0, "FOO");
        assertEquals("FOO", otherWay.get(0));
    
        // But it can't grow
        assertThrows(UnsupportedOperationException.class, () -> otherWay.add("nope"));
    
        // And it can't shrink
        assertThrows(UnsupportedOperationException.class, () -> otherWay.remove(2));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ListsTest.java

        // The result of Arrays.asList() is mutable
        otherWay.set(0, "FOO");
        assertEquals("FOO", otherWay.get(0));
    
        // But it can't grow
        assertThrows(UnsupportedOperationException.class, () -> otherWay.add("nope"));
    
        // And it can't shrink
        assertThrows(UnsupportedOperationException.class, () -> otherWay.remove(2));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/query-params-str-validations.md

    ```
    
    Note que substituímos o valor padrão de `None` para `Query(default=None)`, o primeiro parâmetro de `Query` serve para o mesmo propósito: definir o valor padrão do parâmetro.
    
    Então:
    
    ```Python
    q: Union[str, None] = Query(default=None)
    ```
    
    ...Torna o parâmetro opcional, da mesma maneira que:
    
    ```Python
    q: Union[str, None] = None
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/body-multiple-params.md

    ```Python
    q: Union[str, None] = None
    ```
    
    Ou como em Python 3.10 e versões superiores:
    
    ```Python
    q: str | None = None
    ```
    
    Por exemplo:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="26"
    {!> ../../docs_src/body_multiple_params/tutorial004_py310.py!}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. helm/minio/values.yaml

      #    hosts:
      #      - chart-example.local
    
    ## Node labels for pod assignment
    ## Ref: https://kubernetes.io/docs/user-guide/node-selection/
    ##
    nodeSelector: {}
    tolerations: []
    affinity: {}
    topologySpreadConstraints: []
    
    ## Add stateful containers to have security context, if enabled MinIO will run as this
    ## user and group NOTE: securityContext is only enabled if persistence.enabled=true
    securityContext:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 15:48:31 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/request-files.md

    ```Python
    contents = myfile.file.read()
    ```
    
    /// note | Detalhes Técnicos do `async`
    
    Quando você usa os métodos `async`, o **FastAPI** executa os métodos de arquivo em um threadpool e aguarda por eles.
    
    ///
    
    /// note | "Detalhes Técnicos do Starlette"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 30 19:52:32 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

         * @return the flattened list of node
         * @throws DependencyResolverException
         */
        List<Node> flatten(@Nonnull Session session, @Nonnull Node node, @Nullable PathScope scope)
                throws DependencyResolverException;
    
        @Nonnull
        default DependencyResolverResult flatten(
                @Nonnull Session session, @Nonnull Project project, @Nonnull PathScope scope) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/query-params-str-validations.md

    Le paramètre de requête `q` a pour type `Union[str, None]` (ou `str | None` en Python 3.10), signifiant qu'il est de type `str` mais pourrait aussi être égal à `None`, et bien sûr, la valeur par défaut est `None`, donc **FastAPI** saura qu'il n'est pas requis.
    
    /// note
    
    **FastAPI** saura que la valeur de `q` n'est pas requise grâce à la valeur par défaut `= None`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 17:14:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/path-params-numeric-validations.md

    ```Python hl_lines="10"
    {!> ../../docs_src/path_params_numeric_validations/tutorial001.py!}
    ```
    
    ////
    
    /// note | "Nota"
    
    Um parâmetro de rota é sempre obrigatório, como se fizesse parte da rota.
    
    Então, você deve declará-lo com `...` para marcá-lo como obrigatório.
    
    Mesmo que você declare-o como `None` ou defina um valor padrão, isso não teria efeito algum, o parâmetro ainda seria obrigatório.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        List<Node> flattenDependencies(@Nonnull Node node, @Nonnull PathScope scope);
    
        /**
         * Shortcut for {@code getService(DependencyResolver.class).resolve(...).getPaths()}.
         *
         * @param dependencyCoordinates coordinates of the dependency for which to get the paths
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 16:43:07 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top