Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 591 - 600 of 689 for base32 (0.04 seconds)

  1. impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

      <artifactId>maven</artifactId>
      <version>3.0-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Apache Maven</name>
      <description>Maven is a project development management and
        comprehension tool. Based on the concept of a project object model:
        builds, dependency management, documentation creation, site
        publication, and distribution publication are all controlled from
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 22.4K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    But it's there for you if you need it. πŸ€“
    
    ///
    
    {* ../../docs_src/dependencies/tutorial008b_an_py39.py hl[18:22,31] *}
    
    If you want to catch exceptions and create a custom response based on that, create a [Custom Exception Handler](../handling-errors.md#install-custom-exception-handlers){.internal-link target=_blank}.
    
    ## Dependencies with `yield` and `except` { #dependencies-with-yield-and-except }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 12.9K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java

            Element parentElement = root.child(PARENT).orElse(null);
            if (parentElement == null) {
                return false;
            }
    
            // Apply full inference (parent element trimming based on relativePath)
            return trimParentElementFull(context, root, parentElement, pomMap);
        }
    
        /**
         * Applies dependency-related inference optimizations.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 27.6K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/sql-databases.md

    With SQLModel, we can use **inheritance** to **avoid duplicating** all the fields in all the cases.
    
    #### `HeroBase` - the base class { #herobase-the-base-class }
    
    Let's start with a `HeroBase` model that has all the **fields that are shared** by all the models:
    
    * `name`
    * `age`
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 02 05:06:56 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  5. docs/ko/docs/tutorial/extra-models.md

    μ½”λ“œ 쀑볡은 버그, λ³΄μ•ˆ 문제, μ½”λ“œ 비동기화 문제(ν•œ 곳은 μ—…λ°μ΄νŠΈλ˜μ—ˆμ§€λ§Œ λ‹€λ₯Έ 곳은 μ—…λ°μ΄νŠΈλ˜μ§€ μ•ŠλŠ” 문제) λ“±μ˜ κ°€λŠ₯성을 μ¦κ°€μ‹œν‚΅λ‹ˆλ‹€.
    
    그리고 이 λͺ¨λΈλ“€μ€ λ§Žμ€ 데이터λ₯Ό κ³΅μœ ν•˜λ©΄μ„œ 속성 이름과 νƒ€μž…μ„ μ€‘λ³΅ν•˜κ³  μžˆμŠ΅λ‹ˆλ‹€.
    
    더 λ‚˜μ€ 방법이 μžˆμŠ΅λ‹ˆλ‹€.
    
    `UserBase` λͺ¨λΈμ„ μ„ μ–Έν•˜μ—¬ λ‹€λ₯Έ λͺ¨λΈλ“€μ˜ κΈ°λ³Έ(base)으둜 μ‚¬μš©ν•  수 μžˆμŠ΅λ‹ˆλ‹€. 그런 λ‹€μŒ 이 λͺ¨λΈμ„ 상속받아 속성과 νƒ€μž… μ„ μ–Έ(μœ ν˜• μ„ μ–Έ, 검증 λ“±)을 μƒμ†ν•˜λŠ” μ„œλΈŒν΄λž˜μŠ€λ₯Ό λ§Œλ“€ 수 μžˆμŠ΅λ‹ˆλ‹€.
    
    λͺ¨λ“  데이터 λ³€ν™˜, 검증, λ¬Έμ„œν™” 등은 μ •μƒμ μœΌλ‘œ μž‘λ™ν•  κ²ƒμž…λ‹ˆλ‹€.
    
    μ΄λ ‡κ²Œ ν•˜λ©΄ 각 λͺ¨λΈ κ°„μ˜ 차이점만 μ„ μ–Έν•  수 μžˆμŠ΅λ‹ˆλ‹€(평문 `password`κ°€ μžˆλŠ” 경우, `hashed_password`만 μžˆλŠ” 경우, ν˜Ήμ€ λΉ„λ°€λ²ˆν˜Έκ°€ μ—†λŠ” 경우):
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri May 30 13:38:33 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  6. ci/devinfra/docker/windows2022/Dockerfile

        [Environment]::SetEnvironmentVariable('PATH', $env:PATH, 'Machine');
    
    # Install MSYS2.
    RUN (New-Object Net.WebClient).DownloadFile( \
             'https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-20240727.tar.xz', \
             'msys2.tar.xz'); \
        Start-Process -FilePath \"C:\Program Files\7-Zip\7z.exe\" -ArgumentList 'x msys2.tar.xz -oC:\TEMP\msys2.tar' -Wait; \
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Jan 13 18:59:55 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                withBuildScript(
                    """
                        import gradlebuild.identity.extension.GradleModuleExtension
    
                        plugins {
                            base
                            kotlin("jvm") version "$embeddedKotlinVersion" apply false
                        }
                        subprojects {
                            apply(plugin = "gradlebuild.module-identity")
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 18K bytes
    - Click Count (0)
  8. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /** {@inheritDoc} */
        @Override
        public String getRoleHint() {
            return getId();
        }
    
        /**
         * @return the id of the mojo, based on the goal name
         */
        public String getId() {
            return getPluginDescriptor().getId() + ":" + getGoal();
        }
    
        /**
         * @return the full goal name
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 21.7K bytes
    - Click Count (0)
  9. docs/en/overrides/main.html

    {% extends "base.html" %}
    
    {% block announce %}
    <div class="announce-wrapper">
      <div id="announce-left">
        <div class="item">
          <a class="announce-link" href="https://fastapicloud.com" target="_blank">
            <span class="twemoji">
              {% include ".icons/material/cloud-arrow-up.svg" %}
            </span> Join the <strong>FastAPI Cloud</strong> waiting list πŸš€
          </a>
        </div>
        <div class="item">
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Dec 01 20:06:57 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  10. fastapi/dependencies/models.py

    import inspect
    import sys
    from dataclasses import dataclass, field
    from functools import cached_property, partial
    from typing import Any, Callable, Optional, Union
    
    from fastapi._compat import ModelField
    from fastapi.security.base import SecurityBase
    from fastapi.types import DependencyCacheKey
    from typing_extensions import Literal
    
    if sys.version_info >= (3, 13):  # pragma: no cover
        from inspect import iscoroutinefunction
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 7.1K bytes
    - Click Count (0)
Back to Top