Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 206 for light (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        alias(libs.plugins.jetbrains.intellij)
    }
    ----
    
    TIP: `jetbrains-intellij` is available as the Gradle generated safe accessor: `jetbrains.intellij`.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

            if (e instanceof SocketException || (e instanceof SSLException && e.getMessage().contains("readHandshakeRecord"))) {
                return new HttpRequestException("Got socket exception during request. It might be caused by SSL misconfiguration", e);
            }
    
            if (!(e instanceof SSLHandshakeException)) {
                return e;
            }
    
            SSLHandshakeException sslException = (SSLHandshakeException) e;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

        def "handles different target gradle versions concurrently"() {
            given:
            def last = new ReleasedVersionDistributions().getMostRecentRelease()
            // When adding support for a new JDK version, the previous release might not work with it yet.
            Assume.assumeTrue(last.worksWith(Jvm.current()))
            assert dist != last
            println "Combination of versions used: current - $dist, last - $last"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         *
         * <p>The wrapper downloads a certain distribution only once and caches it. If your distribution base is the
         * project, you might submit the distribution to your version control system. That way no download is necessary at
         * all. This might be in particular interesting, if you provide a custom gradle snapshot to the wrapper, because you
         * don't need to provide a download server then.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

                      - Provides org.gradle.usage 'java-api'
    ----
    
    All _compatible_ candidate variants are displayed with their attributes.
    
    * Unmatched attributes are presented first, as they might be the missing piece in selecting the proper variant.
    * Compatible attributes are presented second as they indicate what the consumer wanted and how these variants do match that request.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    For example, a property that specifies the output directory for a compilation task may start with a value specified by a plugin.
    Then a build script might change the value to some custom location, then this value is used by the task when it runs.
    However, once the task starts to run, we want to prevent further property changes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorterSpec.groovy

        }
    
        def "sorts by comparing ProjectComponentSelector on left and ModuleComponentSelector on right"() {
            def d1 = newDependency(TestComponentIdentifiers.newSelector(":hisProject"), DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("org.gradle", "zzzz"), "3.0"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 18.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Still, conceptually such modules can contain different variants or might have dependency constraints they just omitted (or wrongly defined as dependencies).
    In the next sections, we explore a number existing oss modules with such incomplete metadata and the rules for adding the missing metadata information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    // limitations under the License.
    
    [[build_services]]
    = Using Shared Build Services
    
    Shared build services allow tasks to share state or resources.
    For example, tasks might share a cache of pre-computed values or use a web service or database instance.
    
    A build service is an object that holds the state for tasks to use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    * The map returned by `TaskInputs.getProperties()` is now unmodifiable.
      Trying to modify it will result in an `UnsupportedOperationException` being thrown.
    * There are slight changes in the incubating <<dependency_capability_conflict.adoc#sub:selecting-between-candidates,capabilities resolution>> API, which has been introduced in 5.6, to also allow variant selection based on variant name
    
    [[changes_5.6]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top