Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 206 for light (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

     *
     * Excluding a particular transitive dependency does not guarantee that it does not show up
     * in the dependencies of a given configuration.
     * For example, some other dependency, which does not have any exclude rules,
     * might pull in exactly the same transitive dependency.
     * To guarantee that the transitive dependency is excluded from the entire configuration
     * please use per-configuration exclude rules: [Configuration.getExcludeRules].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                transformLoader = storeIfAbsent(domain, createLoaderForDomain(domain));
                if (closed) {
                    // This replacer was closed while setting up a loader.
                    // The transformLoader might be inserted into the loaders map after close(), so let's close it for sure to
                    // avoid leaks.
                    IoActions.closeQuietly(transformLoader);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

         * Fallback to {@literal javax.xml.bind.DatatypeConverter} from JAXB which is available starting with Java 6 but is not anymore in Java 9.
         * Fortunately, both of these two Base64 encoders implement the right Base64 flavor, the one that does not split the output in multiple lines.
         *
         * @param userInfo user info
         * @return Base64 encoded user info
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizerGroup.java

            return this;
        }
    
        public NodeGroup getDelegate() {
            return delegate;
        }
    
        /**
         * Returns a set of nodes that are finalized by this group. The returned set might contain the nodes belonging to this group.
         */
        public Set<Node> getFinalizedNodes() {
            return node.getFinalizingSuccessors();
        }
    
        @Nullable
        @Override
        public OrdinalGroup asOrdinal() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 01 16:25:48 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

         * since Maven doesn't have a "status" but infers it from the version instead, we can show
         * that we can provide a status to Maven dependencies and still use attribute matching
         * to use the right version.
         */
        def "can select the latest.#status version having release status"() {
            given:
            def versions = [
                '1': 'release',
                '2': 'milestone',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    [[common-problems]]
    = Solving common problems
    
    Small problems in a build, like forgetting to declare a configuration file as an input to your task, can be easily overlooked.
    The configuration file might change infrequently, or only change when some other (correctly tracked) input changes as well.
    The worst that could happen is that your task doesn't execute when it should.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    [[customizing_wrapper]]
    == Customizing the Gradle Wrapper
    
    Most users of Gradle are happy with the default runtime behavior of the Wrapper.
    However, organizational policies, security constraints or personal preferences might require you to dive deeper into customizing the Wrapper.
    
    Thankfully, the built-in `wrapper` task exposes numerous options to bend the runtime behavior to your needs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

            if (common) {
                common.each { inCommon ->
                    diff.common.find { it.left == inCommon && it.right == inCommon }
                }
            }
            diff.rightOnly == rightOnlySet
    
            where:
            left      | right     | leftOnly  | rightOnly | common
            [1, 2, 3] | [2, 3, 4] | [1]       | [4]       | [2, 3]
            []        | []        | []        | []        | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

        def cleanup() {
            mostRecentReleaseExecuter.cleanup()
        }
    
        def setup() {
            buildFile << "apply plugin: 'base'\n"
            // When adding support for a new JDK version, the previous release might not work with it yet.
            Assume.assumeTrue(releasedVersionDistributions.mostRecentRelease.worksWith(Jvm.current()))
        }
    
        GradleVersion getMostRecentReleaseVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    Resolving a configuration can have side effects on Gradle's project model.
    As a result, Gradle must manage access to each project's configurations.
    There are a number of ways a configuration might be resolved unsafely.
    For example:
    
    * A task from one project directly resolves a configuration in another project in the task's action.
    * A task specifies a configuration from another project as an input file collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top