Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,502 for because3 (0.15 sec)

  1. platforms/software/version-control/build.gradle.kts

        implementation(project(":hashing"))
        implementation(project(":logging-api"))
    
        implementation(libs.guava)
        implementation(libs.jgitSsh) {
            exclude("org.apache.sshd", "sshd-osgi") // Because it duplicates sshd-core and sshd-commons contents
        }
    
        testImplementation(project(":native"))
        testImplementation(project(":snapshots"))
        testImplementation(project(":process-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/GuavaCollectionFactoryUsageTest.java

                .callMethod(com.google.common.collect.Lists.class, "newCopyOnWriteArrayList")
                .orShould()
                .callMethod(com.google.common.collect.Lists.class, "newLinkedList")
                .because("The no-argument versions of these List creation factory methods are deprecated, see the notes on their Javadoc");
    
        @ArchTest
        public static final ArchRule guava_new_map_factories_are_deprecated =
            noClasses()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            dir.createFile("file3")
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because an input to build file 'build.gradle' has changed.")
            outputContains(output2)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

         */
        void kill(boolean killTree) {
            println "Killing process with pid: $pid"
            if (pid == null) {
                throw new RuntimeException("Unable to force kill the process because provided pid is null!")
            }
            if (!(OperatingSystem.current().unix || OperatingSystem.current().windows)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[cannot_write_output]]
    == Cannot write to an output file or directory
    
    This error indicates that :
    
    - an output directory cannot be written because the directory property which has been configured actually refers to a regular file (or something else than an actual directory).
    - or that an output file cannot be written because the file property which has been configured actually refers to a directory.
    - or the parent of the output location exists and is a file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            'SomeEnum' | ''                 | 'SomeEnum.A'
            'File'     | ''                 | 'new File("some/path")'  // Not invalidated because type is not final
            'GString'  | ''                 | 'GString.EMPTY'          // Not invalidated because type is not final
            'Iterable' | '<Options>'        | 'Arrays.asList(new Options(), new Options())'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("Uses application plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

            when:
            run "noActions"
    
            then:
            // No stats are reported because no tasks had any actions
            result.assertTasksNotSkipped(":noActions")
            result.assertNotOutput("actionable tasks")
        }
    
        @ToBeFixedForConfigurationCache(because = "buildSrc tasks are not executed when loaded from cache")
        def "reports tasks from buildSrc"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

                configurations.all {
                    resolutionStrategy {
                       capabilitiesResolution.withCapability('org.test:cap') {
                          $rule
                          because "we like testB better"
                       }
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:testA:1.0' {
                    expectGetMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/build.gradle.kts

        implementation(libs.slf4jApi)
        implementation(project(":stdlib-java-extensions"))
    
        testImplementation(testFixtures(project(":core"))) {
            because("ConcurrentSpecification")
        }
        testImplementation(project(":tooling-api")) {
            because("Unit tests verify serialization works with TAPI types")
        }
        testImplementation(testFixtures(project(":daemon-protocol")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top