Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,502 for because3 (0.2 sec)

  1. src/runtime/tracemap.go

    	hash     uintptr
    	id       uint64
    	data     []byte
    }
    
    // stealID steals an ID from the table, ensuring that it will not
    // appear in the table anymore.
    func (tab *traceMap) stealID() uint64 {
    	return tab.seq.Add(1)
    }
    
    // put inserts the data into the table.
    //
    // It's always safe for callers to noescape data because put copies its bytes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

                            ${blockingServer.callFromBuildUsingExpression("projectName")}
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "tasks run in parallel when no max usages specified"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/software/maven/build.gradle.kts

        api(project(":resources"))
    
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.maven3Model) {
            because("We use the metadata model classes to create POM metadata files for components")
        }
        api(libs.maven3RepositoryMetadata) {
            because("We use the metadata model classes to create repository metadata files")
        }
    
        implementation(project(":functional"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/ide/ide/build.gradle.kts

        runtimeOnly(project(":testing-jvm"))
    
        testFixturesApi(project(":base-services")) {
            because("test fixtures export the Action class")
        }
        testFixturesApi(project(":logging")) {
            because("test fixtures export the ConsoleOutput class")
        }
        testFixturesApi(project(":tooling-api")) {
            because("test fixtures export the EclipseWorkspace and EclipseWorkspaceProject classes")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            // second cannot be loaded from the cache because it overlaps with first
            result.assertTaskNotSkipped(second)
    
            when:
            withBuildCache().run(first)
            then:
            // first overwrites second's output if executed on its own
            sharedOutput.text == "Generated by ${first}"
            // first is not loaded from cache because of overlap
            result.assertTaskNotSkipped(first)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. src/runtime/mwbbuf.go

    // above sequence. There must be no preemption points while buf is in
    // use because it is a per-P resource. There must be no preemption
    // points between the buffer put and the write to memory because this
    // could allow a GC phase change, which could result in missed write
    // barriers.
    //
    // getX must be nowritebarrierrec to because write barriers here would
    // corrupt the write barrier buffer. It (and everything it calls, if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. 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)
  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/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