Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,264 for because3 (0.29 sec)

  1. test/fixedbugs/issue29312.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test is not for a fix of 29312 proper, but for the patch that
    // makes sure we at least don't have a security hole because of 29312.
    
    // This code generates lots of types. The binary should contain
    // a runtime.slicetype for each of the following 253 types:
    //
    //     []*pwn
    //     [][]*pwn
    //     ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/antlr/build.gradle.kts

        implementation(project(":plugins-java-library"))
    
        implementation(libs.guava)
        implementation(libs.jsr305)
        implementation(libs.slf4jApi)
    
        compileOnly("antlr:antlr:2.7.7") {
            because("this dependency is downloaded by the antlr plugin")
        }
    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":workers"))
    
        testImplementation(project(":base-services-groovy"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/build-events/build.gradle.kts

        integTestImplementation(project(":logging")) {
            because("This isn't declared as part of integtesting's API, but should be as logging's classes are in fact visible on the API")
        }
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":enterprise-operations"))
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
        def "fires build listener events on included builds"() {
            given:
            dependency 'org.test:buildB:1.0'
            dependency buildB, 'org.test:buildC:1.0'
    
            when:
            execute()
    
            then:
            verifyBuildEvents()
        }
    
        @ToBeFixedForConfigurationCache(because = "build listener")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. platforms/software/publish/build.gradle.kts

        implementation(project(":base-services-groovy")) {
            because("Required for Specs")
        }
        implementation(project(":functional"))
    
        implementation(libs.commonsLang)
        implementation(libs.gson)
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

                @DisableCachingByDefault(because = 'do-not-cache-by-default reason')
                class NotCacheableByDefaultWithReason extends UnspecifiedCacheabilityTask {}
    
                @UntrackedTask(because = 'untracked-task reason')
                class UntrackedTrackWithReason extends UnspecifiedCacheabilityTask {}
    
                @UntrackedTask(because = 'untracked-task-with-cacheable reason')
                @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_all_gobuild.txt

    # go list all should work with GOOS=linux because all packages build on Linux
    env GOOS=linux
    env GOARCH=amd64
    go list all
    
    # go list all should work with GOOS=darwin, but it used to fail because
    # in the absence of //go:build support, p looked like it needed q
    # (p_test.go was not properly excluded), and q was Linux-only.
    #
    # Also testing with r and s that +build lines keep working.
    env GOOS=darwin
    go list all
    
    -- go.mod --
    go 1.17
    module m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 674 bytes
    - Viewed (0)
  8. cmd/os-reliable.go

    			// Retry only for the first retryable error.
    			if osIsNotExist(err) && i == 0 {
    				i++
    				// Determine if os.NotExist error is because of
    				// baseDir's parent being present, retry it once such
    				// that the MkdirAll is retried once for the parent
    				// of dirPath.
    				// Because it is worth a retry to skip a different
    				// baseDir which is slightly higher up the depth.
    				nbaseDir := path.Dir(baseDir)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/EndpointPairIterator.java

    abstract class EndpointPairIterator<N> extends AbstractIterator<EndpointPair<N>> {
      private final BaseGraph<N> graph;
      private final Iterator<N> nodeIterator;
    
      @CheckForNull
      N node = null; // null is safe as an initial value because graphs don't allow null nodes
    
      Iterator<N> successorIterator = ImmutableSet.<N>of().iterator();
    
      static <N> EndpointPairIterator<N> of(BaseGraph<N> graph) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 5K bytes
    - Viewed (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

    val codenarcVersion = if (isAtLeastGroovy4) "3.1.0-groovy-4.0" else "3.1.0"
    
    dependencies {
        rules("gradlebuild:code-quality-rules") {
            because("Provides rules defined in XML files")
        }
        codenarc("gradlebuild:code-quality-rules") {
            because("Provides the IntegrationTestFixturesRule implementation")
        }
        codenarc("org.codenarc:CodeNarc:$codenarcVersion")
        codenarc(embeddedKotlin("stdlib"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top