Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for light (0.04 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/css/manual.css

    		margin-bottom: 0.5em;
    	}
    
    	body.toc2.toc-right {
    		padding-left: 0;
    		padding-right: 15em;
    	}
    
    	body.toc2.toc-right #toc.toc2 {
    		border-right-width: 0;
    		border-left: 1px solid #efefed;
    		left: auto;
    		right: 0;
    	}
    }
    
    @media only screen and (min-width: 1280px) {
    	body.toc2 {
    		padding-left: 20em;
    		padding-right: 0;
    	}
    
    	#toc.toc2 {
    		width: 20em;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *
     * <dl>
     *     <dt>file system hierarchy</dt>
     *     <dd>A directory on the file system with all its descendants.</dd>
     *
     *     <dt>watchable hierarchies</dt>
     *     <dd>The list of file system hierarchies Gradle might want to watch if interesting content appears in the VFS for them.
     *     These are currently roots of the builds seen by the daemon during the current or previous invocations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

         * And if the provided timestamp is in `millisecond` precision, then we will definitely detect changes for that file correctly.
         * But if it's in `second` precision we might not detect changes, and we might need to discard the hash at the end of the build.
         */
        private boolean isReliableTimestampPrecision(long timestamp) {
            return isCurrentTimestampHighPrecision || isHighTimestampPrecision(timestamp);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

            model.left.message == "It works from project :"
            model.right.message == "It works from project :"
            outputContains("script log statement")
    
            when:
            def model2 = runPhasedBuildAction(new SomeToolingModelBuildAction(), new SomeToolingModelBuildAction())
    
            then:
            model2.left.message == "It works from project :"
            model2.right.message == "It works from project :"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top