Search Options

Results per page
Sort
Preferred Languages
Advance

Results 911 - 920 of 3,220 for pink (0.07 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

    import org.apache.maven.api.model.Model;
    
    /**
     * Describes a tag used by the model builder to access a {@link ModelCache}. This interface basically aggregates a name
     * and a class to provide some type safety when working with the otherwise untyped cache.
     *
     * @param <T> The type of data associated with the tag.
     * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead
     */
    @Deprecated(since = "4.0.0")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/VersionConstraint.java

         * <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>
         * Note: only one, this method or {@link #getVersionRange()} method must return non-{@code null} value.
         */
        @Nullable
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingException.java

     * possible before eventually failing to provide callers with rich error information. Use {@link #getProblems()} to
     * query the details of the failure.
     *
     * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.SettingsBuilder} instead
     */
    @Deprecated(since = "4.0.0")
    public class SettingsBuildingException extends Exception {
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ///
    
    /// info
    
    πŸ‘‰ πŸ–Ό πŸ‘₯ βš™οΈ πŸ’­ πŸ›ƒ 🎚 `X-Key` &amp; `X-Token`.
    
    βœ‹οΈ 🎰 πŸ’Ό, πŸ•β” πŸ› οΈ πŸ’‚β€β™‚, πŸ‘† πŸ”œ 🀚 πŸŒ– πŸ’° βšͺ️➑️ βš™οΈ πŸ› οΈ [πŸ’‚β€β™‚ πŸš™ (⏭ πŸ“ƒ)](../security/index.md){.internal-link target=_blank}.
    
    ///
    
    ## πŸ”— ❌ &amp; πŸ“¨ πŸ’²
    
    πŸ‘† πŸ’ͺ βš™οΈ 🎏 πŸ”— *πŸ”’* πŸ‘† βš™οΈ πŸ›Ž.
    
    ### πŸ”— πŸ“„
    
    πŸ‘« πŸ’ͺ πŸ“£ πŸ“¨ πŸ“„ (πŸ’– 🎚) βš–οΈ 🎏 🎧-πŸ”—:
    
    ```Python hl_lines="6  11"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/extra-data-types.md

        * 🐍 `datetime.timedelta`.
        * πŸ“¨ &amp; πŸ“¨ πŸ”œ 🎨 `float` 🌐 πŸ₯ˆ.
        * Pydantic βœ” 🎦 ⚫️ "πŸ’Ύ 8️⃣6️⃣0️⃣1️⃣ πŸ•° βž• πŸ”’", <a href="https://docs.pydantic.dev/latest/concepts/serialization/#json_encoders" class="external-link" target="_blank">πŸ‘€ 🩺 πŸŒ… β„Ή</a>.
    * `frozenset`:
        * πŸ“¨ &amp; πŸ“¨, πŸ˜₯ 🎏 `set`:
            * πŸ“¨, πŸ“‡ πŸ”œ ✍, ❎ ❎ &amp; 🏭 ⚫️ `set`.
            * πŸ“¨, `set` πŸ”œ πŸ—œ `list`.
            * πŸ— πŸ”— πŸ”œ βœ” πŸ‘ˆ `set` πŸ’² 😍 (βš™οΈ 🎻 πŸ”— `uniqueItems`).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/response-cookies.md

    ## Return a `Response` directly
    
    You can also create cookies when returning a `Response` directly in your code.
    
    To do that, you can create a response as described in [Return a Response Directly](response-directly.md){.internal-link target=_blank}.
    
    Then set Cookies in it, and then return it:
    
    ```Python hl_lines="10-12"
    {!../../docs_src/response_cookies/tutorial001.py!}
    ```
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/eventbus/AsyncEventBus.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.eventbus;
    
    import java.util.concurrent.Executor;
    
    /**
     * An {@link EventBus} that takes the Executor of your choice and uses it to dispatch events,
     * allowing dispatch to occur asynchronously.
     *
     * @author Cliff Biffle
     * @since 10.0
     */
    @ElementTypesAreNonnullByDefault
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. docs/de/docs/alternatives.md

    * <a href="https://github.com/tiangolo/full-stack" class="external-link" target="_blank">https://github.com/tiangolo/full-stack</a>
    * <a href="https://github.com/tiangolo/full-stack-flask-couchbase" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-flask-couchbase</a>
    * <a href="https://github.com/tiangolo/full-stack-flask-couchdb" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-flask-couchdb</a>
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/FunnelsTest.java

      public void testAsOutputStream() throws Exception {
        PrimitiveSink sink = mock(PrimitiveSink.class);
        OutputStream out = Funnels.asOutputStream(sink);
        byte[] bytes = {1, 2, 3, 4};
        out.write(255);
        out.write(bytes);
        out.write(bytes, 1, 2);
        verify(sink).putByte((byte) 255);
        verify(sink).putBytes(bytes);
        verify(sink).putBytes(bytes, 1, 2);
      }
    
      public void testSerialization() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java

        private static final long serialVersionUID = -5177019197796206774L;
    
        private final Class<?> targetClass;
    
        private final String propertyName;
    
        /**
         * {@link PropertyNotFoundRuntimeException}を返します。
         *
         * @param targetClass
         *            γ‚ΏγƒΌγ‚²γƒƒγƒˆγ‚―γƒ©γ‚Ή
         * @param propertyName
         *            プロパティ名
         */
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top