Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for make (0.03 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    This final value replaces the provider and the property no longer tracks the value of the provider.
    Calling this method also makes a property instance unmodifiable and any further attempts to change the value of the property will fail.
    Gradle automatically makes the properties of a task final when the task starts execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    [[sec:plugin_conventions]]
    == Adding default configuration with conventions
    
    Plugins should provide sensible defaults and standards in a specific context, reducing the number of decisions users need to make.
    Using the `project` object, you can define default values.
    These are known as *conventions*.
    
    Conventions are properties that are initialized with default values and can be overridden by the user in their build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. docs/en/data/external_links.yml

    Tensorflow 2.0 Models As An API Service With FastAPI & Docker - author: Dylan Anthony author_link: https://dev.to/dbanty link: https://dev.to/dbanty/why-i-m-leaving-flask-3ki6 title: Why I'm Leaving Flask - author: Mike Moritz author_link: https://medium.com/@mike.p.moritz link: https://medium.com/@mike.p.moritz/using-docker-compose-to-deploy-a-lightweight-python-rest-api-with-a-job-queue-37e6072a209b title: Using Docker Compose to deploy a lightweight Python REST API with a job queue - author: '@euri10' author_link:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    If the component does have multiple artifacts, each one is identified by a cumbersome _classifier_.
    There are no common semantics associated with classifiers and that makes it difficult to guarantee a globally consistent dependency graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    class MyPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            println("Plugin ${this.javaClass.simpleName} applied on ${project.name}")
        }
    }
    
    apply<MyPlugin>()
    ----
    
    Let's take a rudimentary example of a plugin written in a file called `other.gradle` located in the same directory as the `build.gradle` file:
    
    [source, other.gradle]
    ----
    public class Other implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top