Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 486 for light (0.26 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

            } else {
                return PluginResolutionResult.found(new InjectedClasspathPluginResolution(plugin));
            }
        }
    
        public String getDescription() {
            // It's true right now that this is always coming from the TestKit, but might not be in the future.
            return "Gradle TestKit";
        }
    
        private static class InjectedClasspathPluginResolution implements PluginResolution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/BiProvider.java

        private final ProviderInternal<A> left;
        private final ProviderInternal<B> right;
    
        public BiProvider(@Nullable Class<R> type, Provider<A> left, Provider<B> right, BiFunction<? super A, ? super B, ? extends R> combiner) {
            this.type = type;
            this.combiner = combiner;
            this.left = Providers.internal(left);
            this.right = Providers.internal(right);
        }
    
        @Override
        protected String toStringNoReentrance() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/kotlin/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/samples/build-organization/composite-builds/declared-substitution/groovy/anonymous-library/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)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

         *
         * Note that reused work times might be different to what it would actually take to execute the work
         * in the current build for a number of reasons:
         *
         * <ul>
         *     <li>reused work could have happened on a remote machine with different hardware capabilities,</li>
         *     <li>there might have been more or less load on the machine producing the reused work,</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/ide/tooling-api/toolingApi-operation.puml

    @startuml
    actor User
    User -> ProjectConnection: request operation
     note right
     operation is one of: build / action / model
     end note
    ProjectConnection -> LongRunningOperation: create instance of
    LongRunningOperation --> User: instance
    User -> LongRunningOperation: withArguments
    LongRunningOperation -> OperationParamsBuilder: withArguments
    User -> LongRunningOperation: set stdOut/stdErr/stdIn
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top