Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for light (0.08 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    doLast {
                        val zero = ${ZeroThought::class.qualifiedName}()
                        val light = ${LightThought::class.qualifiedName}()
                        val deep = ${DeepThought::class.qualifiedName}()
                        println("*" + zero.compute() + "*")
                        println("*" + light.compute() + "*")
                        println("*" + deep.compute() + "*")
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

     * Green background — you can declare dependencies against the configuration.
     * Blue-gray background — the configuration is for consumption by tasks, not for you to declare dependencies.
     * Light blue background with monospace text — a task.
    
    .Java plugin - _main_ source set dependency configurations
    image::java-main-configurations.png[]
    
    .Java plugin - _test_ source set dependency configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                        // this block and discard the left sibling. Might also need to merge the parent
                        left.mergeFrom(this);
                        parent.maybeMerge();
                        return;
                    }
                }
    
                // Attempt to merge with the right sibling
                IndexBlock right = parent.getNext(this);
                if (right != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            task.nested = new Tree(value: "root", right: new Tree(value: "right", right: new Tree(value: "right")))
    
            when:
            visitProperties(task)
    
            then:
            _ * visitor.visitNested() >> true
            noExceptionThrown()
            task.nested.right == task.nested.right.right
        }
    
        def "nested beans can be re-used"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/base.css

        margin-left: 0;
        padding-left: 0;
    }
    
    .last {
        margin-right: 0;
        padding-right: 0;
    }
    
    .top {
        margin-top: 0;
        padding-top: 0;
    }
    
    .bottom {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .citetitle {
        font-style: normal;
    }
    
    table th.border-right {
        border-right: solid #d0d0d0 1px;
    }
    
    table th.no-border-bottom {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

            return simplify(ExcludeAllOf.class, one, two, (left, right) -> doUnion(ImmutableSet.of(left, right)));
        }
    
        @Override
        public ExcludeSpec allOf(ExcludeSpec one, ExcludeSpec two) {
            return simplify(ExcludeAnyOf.class, one, two, (left, right) -> doIntersect(ImmutableSet.of(left, right)));
        }
    
        // Simplifies (A ∪ ...) ∩ A = A
        // and  (A ∩ ...) ∪ A = A
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * </p>
     *
     * <ul>
     *     <li>"any state". The provider will return the value and make no guarantees about the content. This might be used, for example, when generating IDE configuration files or models.
     *     The task that generates the configuration file might only care where some output file will end up and not care whether or not that file has been built yet.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    Some projects might need to divert from the default behavior and enforce an earlier version of a dependency e.g. if the source code of the project depends on an older API of a dependency than some of the external libraries.
    
    [WARNING]
    ====
    Forcing a version of a dependency requires a conscious decision.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

            private final ValueProducer left;
            private final ValueProducer right;
    
            public PlusProducer(ValueProducer left, ValueProducer right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public boolean isKnown() {
                return left.isKnown() || right.isKnown();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            buffer.consumeWhitespace();
            while (buffer.consume("##")) {
                buffer.consumeWhitespace();
                right = buffer.readIdentifier();
                if (right == null) {
                    // Need another identifier
                    buffer.pos = pos;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top