Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 202 for light (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                if (includedBuildPrefix != null) {
                    Path includedBuildPath = includedBuildPrefix.left;
                    BuildState includedBuild = includedBuildPrefix.right;
                    Path projectPath = path.removeFirstSegments(includedBuildPath.segmentCount());
                    return findProjectOf(includedBuild, projectPath);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

        }
    
        private getTomlPath(String name) {
            def tomlResource = getClass().getResource("/org/gradle/api/internal/catalog/parser/${name}.toml").toURI()
            // Paths might be unusual, but we need it because of 1.8
            Paths.get(tomlResource)
        }
    
        @CompileStatic
        private static class DependencySpec {
            private final DependencyModel model
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.index.asMap().size() == 2
            list.index.pendingAsMap.size() == 2
    
            filtered.index.asMap().size() == 1
            filtered.index.pendingAsMap.size() == 1
    
            expect: "list contains the right elements when iterated"
            filtered.asList() == ["realized2", "unrealized2"]
    
            and: "unrealized element get realized"
            container.index.asMap().size() == 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top