Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for imaginePL (0.25 sec)

  1. docs/en/docs/tutorial/bigger-applications.md

        This will take microseconds and will only happen at startup.
    
        So it won't affect performance. ⚡
    
    ### Include an `APIRouter` with a custom `prefix`, `tags`, `responses`, and `dependencies`
    
    Now, let's imagine your organization gave you the `app/internal/admin.py` file.
    
    It contains an `APIRouter` with some admin *path operations* that your organization shares between several projects.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Monitor.java

      //
      // TODO(user): Change API to make it impossible to use a Guard with the "wrong" monitor,
      //    by making the monitor implicit, and to eliminate other sources of IMSE.
      //    Imagine:
      //    guard.lock();
      //    try { /* monitor locked and guard satisfied here */ }
      //    finally { guard.unlock(); }
      // Here are Justin's design notes about this:
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    To build on Linux, install a compatible version of GCC or Clang.
    The {cpp} plugins will discover GCC or Clang using the system PATH.
    
    [[sec:custom_cpp_source_set_paths]]
    === Customizing file and directory locations
    
    Imagine you have a legacy library project that uses an _src_ directory for the production code and private headers and _include_ directory for exported headers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    - You can supply any type implementing link:{groovyDslPath}/org.gradle.api.artifacts.transform.TransformAction.html[TransformAction] to the `registerTransform()` method.
    
    For example, imagine you want to unpack some dependencies and put the unpacked directories and files on the classpath.
    You can do so by registering an artifact transform action of type `Unzip`, as shown here:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/query-params-str-validations.md

            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="13"
        {!> ../../../docs_src/query_params_str_validations/tutorial008.py!}
        ```
    
    ## Alias parameters
    
    Imagine that you want the parameter to be `item-query`.
    
    Like in:
    
    ```
    http://127.0.0.1:8000/items/?item-query=foobaritems
    ```
    
    But `item-query` is not a valid Python variable name.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    [[sec:custom_java_source_set_paths]]
    === Customizing file and directory locations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    You can also specify a regular dependency on a POM-only publication.
    In this case, the dependencies declared in that POM are treated as normal transitive dependencies of the build.
    +
    For example, imagine you want to use the `groovy-all` POM for your tests.
    It's a POM-only publication that has its own dependencies listed inside a `<dependencies>` block.
    The appropriate configuration in the Gradle build looks like this:
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    Often, this is because you refer directly to the output file of another task instead of using the task directly as an input.
    
    For example, imagine that you have a task which takes a `ConfigurableFileCollection` as an input and that you have declared a dependency on the `jar` task using this:
    
    ```
    someTask {
        inputFile.from(jar.archivePath)
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. docs/vi/docs/python-types.md

    ```
    
    Nó là một thứ khác.
    
    Chúng ta sử dụng dấu hai chấm (`:`), không phải dấu bằng (`=`).
    
    Và việc thêm gợi ý kiểu dữ liệu không làm thay đổi những gì xảy ra so với khi chưa thêm chúng.
    
    But now, imagine you are again in the middle of creating that function, but with type hints.
    
    Tại cùng một điểm, bạn thử kích hoạt autocomplete với `Ctrl+Space` và bạn thấy:
    
    <img src="/img/python-types/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    * Nested values
    +
    Custom types that don’t conform to the other two categories but have their own properties that are inputs or outputs. In effect, the task inputs or outputs are nested inside these custom types.
    
    As an example, imagine you have a task that processes templates of varying types, such as FreeMarker, Velocity, Moustache, etc. It takes template source files and combines them with some model data to generate populated versions of the template files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top