Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 180 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/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)
  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/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)
  7. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

            val hasher = Hashing.newHasher()
            // This routine is used to snapshot results of File.list(), File.listFiles() and similar calls.
            // Technically, the relative order or entries is visible to the caller, so it might be considered when computing the hash.
            // However, the File.list spec leaves the order undefined, so no reasonable implementation should depend on it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

                Class.forName(superclass.name, true, superclass.classLoader)
                maybeInit(superclass)
            }
        }
    
        // TODO: What about the runtime decorations a serialized bean might have had at configuration time?
        private
        fun newConstructorForSerialization(beanType: Class<*>, constructor: Constructor<*>): Constructor<out Any> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

        private static final Comparator<File> FILE_SEGMENT_COMPARATOR = new Comparator<File>() {
            @Override
            public int compare(File left, File right) {
                String leftPath = left.getPath();
                String rightPath = right.getPath();
    
                int len1 = leftPath.length();
                int len2 = rightPath.length();
                int lim = Math.min(len1, len2);
    
                int k = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/DependencyResolutionFromTaskContextIntegrationTest.groovy

            """
            settingsFile << """
                include 'a', 'b'
            """
    
            expect:
            fails("a:foo", "b:foo", "--parallel")
    
            // We just need to assert that the build fails with the right error message here, it doesn't matter which task is the first to fail,
            // allowing either failure to pass the test should reduce flakiness on CI.
    
            def docLinkMessage = getDocLinkMessage()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top