Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,264 for because3 (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                            }
                            if ($useReason) { because("This reason comes from a constraint") }
                        }
                    }
                }
    
                configurations.all {
                    resolutionStrategy.eachDependency {
                        if (requested.name == 'foo') {
                            because("fix comes from component selection rule").useTarget("org:bar:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  2. src/runtime/os_solaris.go

    	tv_nsec int64
    }
    
    type mscratch struct {
    	v [6]uintptr
    }
    
    type mOS struct {
    	waitsema uintptr // semaphore for parking on locks
    	perrno   *int32  // pointer to tls errno
    	// these are here because they are too large to be on the stack
    	// of low-level NOSPLIT functions.
    	//LibCall       libcall;
    	ts      mts
    	scratch mscratch
    }
    
    type libcFunc uintptr
    
    //go:linkname asmsysvicall6x runtime.asmsysvicall6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/ant/AntImportBuildIntegrationTest.groovy

        }
    
    
        @ToBeFixedForConfigurationCache(because = CONFIGURATION_CACHE_FAIL_REASON)
        def "by default basedir is same as Ant file location"() {
            expect:
            "test basedir"("""
                ant.importBuild 'build.xml'
            """, testDirectory, "test-build")
        }
    
        @Issue("gradle/gradle#1698")
        @ToBeFixedForConfigurationCache(because = CONFIGURATION_CACHE_FAIL_REASON)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 26 09:29:29 UTC 2020
    - 3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/GradlePluginIntegrationTest.groovy

        File initFile;
    
        def setup() {
            initFile = temporaryFolder.createFile("initscripts/init.gradle")
            executer.usingInitScript(initFile);
        }
    
        @ToBeFixedForConfigurationCache(because = "Gradle.buildFinished")
        def "can apply binary plugin from init script"() {
            when:
            initFile << """
            apply plugin:SimpleGradlePlugin
    
            class SimpleGradlePlugin implements Plugin<Gradle> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top