Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 267 for light (0.07 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

    * Run similar named tasks in all subprojects
    * Run a task in a specific subproject
    * Build, bundle and run the application
    
    == Next steps
    
    When your project grows, you might be interested in more details how to configure JVM projects, structuring multi-project builds and dependency management:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

        /**
         * Whether the execution was successful.
         */
        boolean isSuccessful();
    
        /**
         * Snapshots of the roots of output properties.
         *
         * In the presence of overlapping outputs this might be different from
         * {@link BeforeExecutionState#getOutputFileLocationSnapshots()},
         * as this does not include overlapping outputs not produced by the work.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/integTest/resources/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest/loggingConfig/src/main/java/com/example/LumberJack.java

        public void sing() {
            ROOT.fine("Oh, I'm a lumberjack, and I'm okay.");
            OAK.fine("I sleep all night and I work all day.");
            ELM.fine("He's a lumberjack, and He's okay.");
            ELMER.fine("He sleeps all night and he works all day.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/InvalidInstallationWarningReporter.java

            if (!metadata.isValidInstallation()) {
                logger.warn(
                    "Invalid Java installation found at {}. " +
                        "It will be re-checked in the next build. This might have performance impact if it keeps failing. " +
                        "Run the 'javaToolchains' task for more details.",
                    installationLocation.getDisplayName()
                );
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockPacketPayloadTest.groovy

            then:
            payload.lockId == 42
            payload.type == type
    
            where:
            type << FileLockPacketType.values()
        }
    
        def "decodes payloads with unknown types that might be added in the future"() {
            when:
            def payload = FileLockPacketPayload.decode([1, 0, 0, 0, 0, 0, 0, 0, 42, FileLockPacketType.values().length] as byte[], 10)
    
            then:
            payload.lockId == 42
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/MockFailure.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.failure.mappers
    
    /**
     * Simple AssertionError subclass to test with
     * This makes it sure we catch the right assertion error
     */
    class MockFailure extends AssertionError {
        MockFailure(int detailMessage) {
            super(detailMessage)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 909 bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            equalChars(slash, backslash, caseSensitivity)
            equalChars(backslash, slash, caseSensitivity)
        }
    
        def "can compare path separator chars correctly (#left - #right = #result)"() {
            def char1 = left as char
            def char2 = right as char
    
            expect:
            compareCharsIgnoringCase(char1, char2) == result
            compareCharsIgnoringCase(char2, char1) == -result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/ParallelTestExecutionIntegrationTest.groovy

            run('test')
    
            then:
            noExceptionThrown()
        }
    
        // TODO:configuration-cache test currently flaky since cc might run tests in parallel
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "cc might cause tests to run in parallel")
        def "does not run tests from multiple tasks from the same project in parallel"() {
            withBlockingJUnitTests(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/AnalysisStatementFilter.kt

            subTypes = [
                AndFilter::class,
                OrFilter::class,
            ]
        )
        sealed interface CompositionFilter : AnalysisStatementFilter {
            val left: AnalysisStatementFilter
            val right: AnalysisStatementFilter
    
            interface AndFilter : CompositionFilter
            interface OrFilter : CompositionFilter
        }
    
        interface NotFilter : AnalysisStatementFilter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheController.java

        /**
         * Called when the configuration for this controller is available.
         * The implementation may or may not use the given configuration. For example, the controller for an included build might use the configuration from the root build instead.
         */
        void configurationAvailable(BuildCacheConfigurationInternal configuration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top