Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for Automatic (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    If Scala is used for production code, the `scala-library` dependency should be added to the `implementation` configuration:
    
    .Declaring a Scala dependency for production code
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                assertTrue(jars.removeIf(it -> it.startsWith("junit-platform-engine-1.")));
                assertEquals(jars.size(), 0);
            """)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. docs/en/docs/python-types.md

    * **Convert data**: from the request to the required type.
    * **Validate data**: coming from each request:
        * Generating **automatic errors** returned to the client when the data is invalid.
    * **Document** the API using OpenAPI:
        * which is then used by the automatic interactive documentation user interfaces.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

        /**
         * The source sets container.
         *
         * @since 7.1
         */
        SourceSetContainer getSourceSets();
    
        /**
         * Tells if automatic JVM targeting is enabled. When disabled, Gradle
         * will not automatically try to get dependencies corresponding to the
         * same (or compatible) level as the target compatibility of this module.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. maven-compat/src/main/mdo/profiles.mdo

        </class>
        <class>
          <name>Activation</name>
          <version>1.0.0</version>
          <description><![CDATA[
            The conditions within the build runtime environment which will trigger
            the automatic inclusion of the parent build profile.
          ]]></description>
          <fields>
            <field>
              <name>activeByDefault</name>
              <version>1.0.0</version>
              <type>boolean</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

            JvmSoftwareComponentInternal component = getSingleJavaComponent();
            if (component != null) {
                component.getFeatures().add(feature);
    
                // TODO: Much of the logic below should become automatic.
                // The component should be aware of all variants in its features and should advertise them
                // without needing to explicitly know about each variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

            private ChecksumBuilder(ChecksumKind kind) {
                this.kind = kind;
            }
    
            /**
             * Sets the origin, if not set already. This is
             * mostly used for automatic generation of checksums
             */
            void withOrigin(String origin) {
                if (this.origin == null) {
                    this.origin = origin;
                }
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    2. *Isolation from the Main Build*:
    +
    Code placed in `buildSrc` is isolated from the other build scripts of your project.
    This helps keep the main build scripts cleaner and more focused on project-specific configurations.
    
    3. *Automatic Compilation and Classpath*:
    +
    The contents of the `buildSrc` directory are automatically compiled and included in the classpath of your main build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/query-params-str-validations.md

    * Show a **clear error** for the client when the data is not valid
    * **Document** the parameter in the OpenAPI schema *path operation* (so it will show up in the **automatic docs UI**)
    
    ## Alternative (old) `Query` as the default value
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/docker.md

    You will see the automatic interactive API documentation (provided by <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank">Swagger UI</a>):
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top