Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 206 for light (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    When you have a fully up to date build and you clean and re-run the code generator task on the same code base it should generate _exactly the same output_, so anything that depends on that output will stay up-to-date.
    
    It might also be that your code generator adds some extra information to its output that doesn't depend on its declared inputs, like a timestamp.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            "both have (but zip provider missing)" | Integer.MAX_VALUE | 0        | 88         | 0         | null
            "only left has"                        | 23                | 0        | null       | 0         | null
            "only right has"                       | null              | 0        | 88         | 0         | null
            "none have"                            | null              | 0        | null       | 0         | null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersections.java

        }
    
        @Nullable
        ExcludeSpec tryIntersect(ExcludeSpec left, ExcludeSpec right) {
            if (left.equals(right)) {
                return left;
            } else {
                return intersections.stream()
                    .filter(i -> i.applies(left, right))
                    .findFirst()
                    .map(i -> i.intersect(left, right, factory))
                    .orElse(null);
            }
        }
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     * 2. UPDATE build-logic/lifecycle/src/main/kotlin/PrintStackTracesOnTimeoutBuildService.kt if this class is moved to another package.
     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
     * So we don't want it to depend on any third-party libraries. It's executed directly via `java JavaProcessStackTracesMonitor` in `PrintStackTracesOnTimeoutBuildService`.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

        }
    
        private void recordTopLevelModules(FileCopyDetails details) {
            DeploymentDescriptor deploymentDescriptor = getDeploymentDescriptor();
            // since we might generate the deployment descriptor, record each top-level module
            if (deploymentDescriptor != null && details.getPath().lastIndexOf("/") <= 0) {
                EarModule module;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      virtual const string& GetTestCaseName() const = 0;
      // Test case id to verify identity.
      virtual TypeId GetTestCaseTypeId() const = 0;
      // UnitTest class invokes this method to register tests in this
      // test case right before running them in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
      // instance of a ParameterizedTestCaseInfoBase derived class.
      virtual void RegisterTests() = 0;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            project.plugins.hasPlugin(ReportingBasePlugin)
        }
    
        def "pmd 7.0.0 is loading the right dependencies"() {
            expect:
            PmdPlugin.calculateDefaultDependencyNotation("7.0.0") == ImmutableSet.of("net.sourceforge.pmd:pmd-java:7.0.0", "net.sourceforge.pmd:pmd-ant:7.0.0")
        }
    
        def "pmd 7.0.0-rc4 is loading the right dependencies"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

         *
         * We currently can't filter single unrolled methods due to a limitation with Spock and JUnit 4/5
         * So we handle selecting the right methods by some custom code in our performance test infrastructure (`TestScenarioSelector.shouldRun()`).
         * The classes filters are still handled by Gradle's/JUnit's infrastructure.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
            fixture.assertStateStored {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

            add {
                failOnText {
                    conditionType = BuildFailureOnText.ConditionType.CONTAINS
                    pattern = "%unmaskedFakeCredentials%"
                    failureMessage = "This build might be leaking credentials"
                    reverse = false
                    stopBuildOnFailure = true
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top