Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,523 for because1 (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceIntegrationTest.groovy

            given:
            executer.requireIsolatedDaemons() // because we want to reuse Gradle user home services
            executer.beforeExecute {
                if (!GradleContextualExecuter.embedded) {
                    executer.withArgument("-D$REUSE_USER_HOME_SERVICES=true")
                }
            }
            requireOwnGradleUserHomeDir() // because we delete caches and distributions
            alwaysCleanupCaches()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 15:48:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            buildFile << "task foo"
    
            when:
            run("foo", "--configure-on-demand")
    
            then:
            fixture.assertProjectsConfigured(":")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "evaluates only project referenced in the task list"() {
            createDirs("api", "impl", "util", "util/impl")
            settingsFile << "include 'api', 'impl', 'util', 'util:impl'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. build-logic-commons/build-platform/build.gradle.kts

            api("com.uwyn:jhighlight:1.0")
            api("com.vladsch.flexmark:flexmark-all:0.34.60") {
                because("Higher versions tested are either incompatible (0.62.2) or bring additional unwanted dependencies (0.36.8)")
            }
            api("org.apache.pdfbox:pdfbox:2.0.24") {
                because("Flexmark 0.34.60 brings in a vulnerable version of pdfbox")
            }
            api("com.google.code.findbugs:jsr305:3.0.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/install_dep_version.txt

    # Regression test for Issue #54908. When running a go install module@version
    # with --mod=readonly moduleInfo was not setting the GoVersion for the module
    # because the checksumOk function was failing because modfetch.GoSumFile
    # was not set when running outside of a module.
    
    env GOTOOLCHAIN=local
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:17 UTC 2023
    - 364 bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    
    class TaskSelectionIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "given an unqualified name traverse project tree from current project and select all tasks with matching name"() {
            createDirs("a", "b", "a/a", "b/b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/groovy/build.gradle

        constraints {
            implementation('org.apache.httpcomponents:httpclient:4.5.3') {
                because 'previous versions have a bug impacting this application'
            }
            implementation('commons-codec:commons-codec:1.11') {
                because 'version 1.9 pulled from httpclient has bugs affecting this application'
            }
        }
    }
    // end::dependency-constraints[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 682 bytes
    - Viewed (0)
  7. pkg/apis/core/validation/events_test.go

    					Kind:       "Node",
    				},
    				EventTime:           someTime,
    				ReportingController: "k8s.io/my-controller",
    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Because",
    			},
    			valid: true,
    			msg:   "Valid new Event",
    		},
    		{
    			Event: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test",
    					Namespace: metav1.NamespaceSystem,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/kotlin/build.gradle.kts

    val conf by configurations.creating
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("org.utils:api"))
                .using(project(":api")).because("we work with the unreleased development version")
            substitute(module("org.utils:util:2.5")).using(project(":util"))
        }
    }
    // end::module_to_project_substitution[]
    // tag::project_to_module_substitution[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/kotlin/build.gradle.kts

        constraints {
            implementation("org.apache.httpcomponents:httpclient:4.5.3") {
                because("previous versions have a bug impacting this application")
            }
            implementation("commons-codec:commons-codec:1.11") {
                because("version 1.9 pulled from httpclient has bugs affecting this application")
            }
        }
    }
    // end::dependency-constraints[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 684 bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/build.gradle.kts

        integTestImplementation(libs.commonsLang)
        integTestImplementation(libs.javaParser) {
            because("The Groovy docs inspects the dependencies at compile time")
        }
        integTestImplementation(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top