Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 206 for light (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            if (match == null) {
                throw new AssertionFailedError("""Could not find problems summary in output:
    ${text}
    """)
            }
    
            def summary = match.right
            def matcher = headerPattern.matcher(summary.first)
            assert matcher.matches()
            def totalProblems = matcher.group(1).toInteger()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

            this.selected = selected;
            this.replaced = computeReplaced(selected);
    
            doRestart(selected);
        }
    
        private boolean computeReplaced(ComponentState selected) {
            // This module might be resolved to a different module, through replacedBy
            return !selected.getId().getModule().equals(getId());
        }
    
        private void doRestart(ComponentState selected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    ----
    ====
    
    This feature is helpful if you work with tasks provided by Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

                }
            """
        }
    
        def removeTestClass() {
            // Removes MyTest.class to trigger a new build because it's input of test task.
            // Previously we made changes to the source files, but that might trigger
            // two builds - one is from `MyTest.java` change, another one is from
            // `MyTest.class` change. The timing of these two builds and cancellation
            // resulted in flakiness. To resolve this issue,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            sourceSets.all(sourceSet -> buildOutputCleanupRegistry.registerOutputs(sourceSet.getOutput()));
        }
    
        /**
         * Unless there are other concerns, we'd prefer to run jar tasks prior to test tasks, as this might offer a small performance improvement
         * for common usage.  In practice, running test tasks tends to take longer than building a jar; especially as a project matures. If tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

        TypeId fixture_class_id,
        SetUpTestCaseFunc set_up_tc,
        TearDownTestCaseFunc tear_down_tc,
        TestFactoryBase* factory);
    
    // If *pstr starts with the given prefix, modifies *pstr to be right
    // past the prefix and returns true; otherwise leaves *pstr unchanged
    // and returns false.  None of pstr, *pstr, and prefix can be NULL.
    GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            expect:
            def result = resolve(include('TEST(FILE, NAME)'))
            result.complete
            result.files.file as List == [header]
        }
    
        def "right-hand side of token concatenation can be empty"() {
            given:
            def header = systemIncludeDir.createFile("test.h")
    
            macros << macro("FILENAME", '<test.h>')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            if (leftArg == null) return tree.parsingError(node, "Missing left hand side in binary expression")
            if (rightArg == null) return tree.parsingError(node, "Missing right hand side in binary expression")
    
            return when (operationToken) {
                EQ -> elementOrFailure {
                    val lhs = checkForFailure(propertyAccessStatement(tree, leftArg!!))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

                    printForCopyInTest()
                }
                assert actualMessage == expected
            }
    
            private void printForCopyInTest() {
                println("Incorrect test expectation. You might want to verify this message an copy this expectation in the test if you changed the rendering:")
                println()
                println('outputEquals """')
                println(actualMessage)
                println('"""')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    The "architecture" dimension covers processor architectures like x86-64 and PowerPC.
    
    A variant is a combination of values for these dimensions, consisting of exactly one value for each dimension.
    You might have a "debug x86-64" or a "release PowerPC" variant.
    
    Gradle has built-in support for several dimensions and several values within each dimension.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top