Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,217 for note (1.33 sec)

  1. manifests/charts/istio-cni/values.yaml

          # deletePods will delete any broken pod. These will then be rescheduled, hopefully onto a node that is fully ready.
          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
          # repairPods will dynamically repair any broken pod by setting up the pod networking configuration even after it has started.
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 5.2K bytes
    - Viewed (1)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         */
        @Nullable
        Dependency getDependency();
    
        /**
         * Gets the child nodes of this node.
         *
         * @return the child nodes of this node, never {@code null}
         */
        @Nonnull
        List<Node> getChildren();
    
        /**
         * @return repositories of this node
         */
        @Nonnull
        List<RemoteRepository> getRemoteRepositories();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/VersionConstraint.java

        /**
         * Returns the range of this constraint, or {@code null} if none.
         * <p>
         * Note: only one, this method or {@link #getRecommendedVersion()} method must return non-{@code null} value.
         */
        @Nullable
        VersionRange getVersionRange();
    
        /**
         * Returns the recommended version of this constraint, or {@code null} if none.
         * <p>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/SerializableTester.java

       * {@code SerializableTester} calls with other, GWT-compatible tests.
       *
       * <p>Note that the specified object may not be known by the compiler to be a {@link
       * java.io.Serializable} instance, and is thus declared an {@code Object}. For example, it might
       * be declared as a {@code List}.
       *
       * <p>Note also that serialization is not in general required to return an object that is
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Apr 25 11:57:12 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/response-status-code.md

    ⚫️ πŸ”œ:
    
    * πŸ“¨ πŸ‘ˆ πŸ‘” πŸ“Ÿ πŸ“¨.
    * πŸ“„ ⚫️ βœ… πŸ—„ πŸ”— ( &amp; , πŸ‘©β€πŸ’» πŸ”’):
    
    <img src="/img/tutorial/response-status-code/image01.png">
    
    !!! note
        πŸ“¨ πŸ“Ÿ (πŸ‘€ ⏭ πŸ“„) 🎦 πŸ‘ˆ πŸ“¨ πŸ”¨ 🚫 βœ”οΈ πŸ’ͺ.
    
        FastAPI πŸ’­ πŸ‘‰, &amp; πŸ”œ 🏭 πŸ—„ 🩺 πŸ‘ˆ πŸ‡΅πŸ‡Έ πŸ“€ πŸ™…β€β™‚ πŸ“¨ πŸ’ͺ.
    
    ## πŸ”ƒ πŸ‡ΊπŸ‡ΈπŸ” πŸ‘” πŸ“Ÿ
    
    !!! note
        πŸš₯ πŸ‘† βͺ πŸ’­ βš«οΈβ” πŸ‡ΊπŸ‡ΈπŸ” πŸ‘” πŸ“Ÿ, 🚢 ⏭ πŸ“„.
    
    πŸ‡ΊπŸ‡ΈπŸ”, πŸ‘† πŸ“¨ πŸ”’ πŸ‘” πŸ“Ÿ 3️⃣ 9️⃣ πŸ• πŸ“¨.
    
    πŸ‘« πŸ‘” πŸ“Ÿ βœ”οΈ πŸ“› πŸ”— πŸ€” πŸ‘«, βœ‹οΈ ⚠ πŸ• πŸ”’.
    
    πŸ“:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  6. 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`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:53:21 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/HostAndPort.java

     *   <li>[2001:db8::1] - {@link #getHost()} omits brackets
     *   <li>[2001:db8::1]:80 - {@link #getHost()} omits brackets
     *   <li>2001:db8::1 - Use {@link #requireBracketsForIPv6()} to prohibit this
     * </ul>
     *
     * <p>Note that this is not an exhaustive list, because these methods are only concerned with
     * brackets, colons, and port numbers. Full validation of the host field (if desired) is the
     * caller's responsibility.
     *
     * @author Paul Marks
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Aug 22 20:55:57 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  8. manifests/charts/README.md

    Note: each component can be installed in parallel with an existing Istio 1.0 or 1.1 installation in
    `istio-system`. The new components will not interfere with existing apps, but can interoperate,
    and it is possible to gradually move apps from Istio 1.0/1.1 to the new environments and
    across environments ( for example canary -> prod )
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  9. ci/official/requirements_updater/requirements.in

    astunparse == 1.6.3
    dill == 0.3.7
    astor == 0.7.1
    typing_extensions == 4.8.0
    gast == 0.4.0
    termcolor == 2.3.0
    wrapt == 1.16.0
    tblib == 2.0.0
    
    # Install tensorboard, and keras
    # Note that here we want the latest version that matches TF major.minor version
    # Note that we must use nightly here as these are used in nightly jobs
    # For release jobs, we will pin these on the release branch
    keras-nightly ~= 3.0.0.dev
    tb-nightly ~= 2.17.0.a
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 07:17:18 GMT 2024
    - 806 bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheStats.java

       * Returns the number of times {@link Cache} lookup methods have returned either a cached or
       * uncached value. This is defined as {@code hitCount + missCount}.
       *
       * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is
       * guaranteed not to throw an exception). If you require specific handling, we recommend
       * implementing your own stats collector.
       */
      public long requestCount() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Sun Aug 07 02:38:22 GMT 2022
    - 12.6K bytes
    - Viewed (0)
Back to top