Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 486 for light (0.03 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseInsensitiveVfsRelativePathTest.groovy

            where:
            left     | right
            '\u1e9e' | 'ß'
            '\u03a3' | '\u03c2'
            '\u03a3' | '\u03c3'
        }
    
        def "can compare lower and upper case correctly (#left - #right = #result)"() {
            def char1 = left as char
            def char2 = right as char
            def caseInsensitiveResult = left.toUpperCase() == right.toUpperCase() ? 0 : result
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/toolchain_plugins.adoc

    WARNING: For the download URL only secure protocols like `https` are accepted.
    This is required to make sure no one can tamper with the download in flight.
    
    The plugins provide the mapping logic via an implementation of link:{javadocPath}/org/gradle/jvm/toolchain/JavaToolchainResolver.html[JavaToolchainResolver]:
    
    .JavaToolchainResolverImplementation.java
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    In this example, the main class (i.e., the point where the program's execution begins) is `com.example.Main`.
    
    Consult the <<writing_build_scripts.adoc#writing_build_scripts,Writing Build Scripts>> page to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/DefaultVariantArtifactResolver.java

                // Most of the time the artifactType registry has the same effect on the variant's attributes, but this isn't guaranteed.
                // It might be better to tighten this up by either requiring a single artifactType registry for the entire build or eliminating this feature
                // entirely.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/PairTest.groovy

        t.nestLeft(2).right == "a"
        t.nestRight(2).left == 1
        t.nestRight(2).right == Pair.of(2, "a")
    
        t.pushLeft(2).left == 2
        t.pushLeft(2).right == t
        t.pushRight(2).left == t
        t.pushRight(2).right == 2
    
        t.mapLeft { it + 1 }.left == 2
        t.mapLeft { it + 1 }.right == "a"
        t.mapRight { it * 2 }.left == 1
        t.mapRight { it * 2 }.right == "aa"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            protected final Collector<T> left;
            protected final Collector<T> right;
    
            private AbstractPlusCollector(Collector<T> left, Collector<T> right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public int size() {
                return left.size() + right.size();
            }
    
            @Override
            public ValueProducer getProducer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/util/MergeOptionsUtil.java

        }
    
        public static boolean canBeMerged(String left, String right) {
            if (left == null || right == null) {
                return true;
            } else {
                return normalized(left).equals(normalized(right));
            }
        }
    
        public static boolean canBeMerged(File left, File right) {
            if (left == null || right == null) {
                return true;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/build_lifecycle.adoc

    In the *execution phase*, Gradle runs tasks.
    
    Gradle uses the task execution graphs generated by the configuration phase to determine which tasks to execute.
    
    [[sec:task_execution]]
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 11:17:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        font-size: 10pt;
    }
    
    th, td {
        white-space: nowrap;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 12px;
        padding-right: 12px;
        text-align: left;
        vertical-align: bottom;
    }
    
    th.numeric, td.numeric {
        text-align: right;
    }
    
    .empty {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    .more-detail {
        color: #a0a0a0;
        font-size: 8pt;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            protected final MapCollector<K, V> right;
    
            private AbstractPlusCollector(MapCollector<K, V> left, MapCollector<K, V> right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public ValueProducer getProducer() {
                return left.getProducer().plus(right.getProducer());
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top