Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 495 for light (0.88 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Either.java

    /**
     * Represents values with two possibilities.
     *
     * @param <L> the left type.
     * @param <R> the right type.
     */
    public abstract class Either<L, R> {
    
        public static <L, R> Either<L, R> left(L value) {
            return new Left<>(value);
        }
    
        public static <L, R> Either<L, R> right(R value) {
            return new Right<>(value);
        }
    
        /**
         * Take the value if this is a left.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/groovy/my-utils/number-utils/src/main/java/org/sample/numberutils/Numbers.java

    package org.sample.numberutils;
    
    public class Numbers {
       public static int add(int left, int right) { return left + right; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 129 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesExecutor.java

            }
        }
    
        private void rerunReusingStoredConfigurationCacheEntry(List<String> args, List<String> flags) {
            // Rerun tasks. If the task is up-to-date, then its actions aren't executed.
            // This might hide issues with Groovy closures, as the methods referenced inside the closure are resolved dynamically.
            try {
                createExecuter(args, flags).withArgument("--rerun-tasks").run();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    
    Now the _consumer_ needs to depend on this configuration in order to get the right artifact:
    
    .An explicit configuration dependency
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    If your build consumes modules with Ivy metadata, you might be able to activate api and implementation separation as described <<variant_model.adoc#sub:ivy-mapping-to-variants,here>> if all modules follow a certain structure.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MergeProviderTest.groovy

            def mergedSideEffect = Mock(ValueSupplier.SideEffect)
    
            def left = Providers.of("left").withSideEffect(leftSideEffect)
            def right = Providers.of("right").withSideEffect(rightSideEffect)
    
            def provider = new MergeProvider([left, right]).withSideEffect(mergedSideEffect)
    
            when:
            provider.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

            this.publications = publications;
            this.checker = checker;
            this.dependencyCoordinateResolverFactory = dependencyCoordinateResolverFactory;
            // Collect a map from component to coordinates. This might be better to move to the component or some publications model
            collectCoordinates(componentCoordinates);
        }
    
        public Provider<ModuleMetadataSpec> build() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top