Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 300 for broken3 (0.25 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            gradleHandle.waitForFinish()
            gradleHandle.standardOutput.contains("result = true")
    
            where:
            input    | _
            ""       | _
            "broken" | _
            "false"  | _
            "nope"   | _
            "y"      | _
            "n"      | _
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            app.writeToProject(testDirectory)
    
            file("src/main/swift/ignore.cpp") << 'broken!'
            file("src/main/swift/ignore.c") << 'broken!'
            file("src/main/swift/ignore.m") << 'broken!'
            file("src/main/swift/ignore.h") << 'broken!'
            file("src/main/swift/ignore.java") << 'broken!'
    
            and:
            buildFile << """
                apply plugin: 'swift-application'
             """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

    allprojects {
        repositories { maven { url '$mavenHttpRepo.uri' } }
    }
    dependencies {
        compile 'org:test:1.0'
        compile 'org:test2:2.0'
        compile files { throw new RuntimeException('broken 1') }
        compile files { throw new RuntimeException('broken 2') }
        compile project(':a')
    }
    
    project(':a') {
        configurations.compile.outgoing.variants {
            v1 { }
            v2 { }
        }
    }
    
    task show {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

                org.gradle.internal.Factory<String> broken = { "broken" }
                result.failed(new ModuleVersionResolveException(newSelector(DefaultModuleIdentifier.newId("a", "b"), new DefaultMutableVersionConstraint("c")), broken))
            }
        }
    
        def brokenSelector(Map<String, ?> args = [:], def from, String to) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            Task broken = task("broken", failure: new RuntimeException("failure"))
            Task finalized = task("finalized", finalizedBy: [finalizer])
    
            when:
            addToGraphAndPopulate([broken, finalized])
    
            then:
            executionPlan.tasks as List == [broken, finalized, finalizerDependency, finalizer]
            executedTasks == [broken]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

                    into 'libs'
                    from configurations.compile
                }
                """
        }
    
        @ToBeFixedForConfigurationCache
        def "can run offline mode after hitting broken repo url"() {
            given:
            buildFileWithSnapshotDependency()
            and:
            noAuthorizationRepo()
    
            publishedMavenModule()
            when:
            moduleAvailableViaHttp()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. cni/pkg/cmd/root.go

    	registerBooleanParameter(constants.RepairDeletePods, false, "Controller will delete pods when detecting pod broken by race condition")
    	registerBooleanParameter(constants.RepairLabelPods, false, "Controller will label pods when detecting pod broken by race condition")
    	registerStringParameter(constants.RepairLabelKey, "cni.istio.io/uninitialized",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

            configurations.conf.dependencies.add project.dependencies.create("org:default-dependency:1.0")
        }
    }
    task broken {
        def child = configurations.child
        def conf = configurations.conf
        doLast {
            child.files
            conf.files
        }
    }
    """
    
            when:
            fails "broken"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    				APIVersion:        "v1",
    				Resource:          "pods",
    				IsResourceRequest: true,
    			},
    			isMutating: false,
    			want: `
    			            # HELP apiserver_request_total [STABLE] Counter of apiserver requests broken out for each verb, dry run value, group, version, resource, scope, component, and HTTP response code.
    			            # TYPE apiserver_request_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

            then:
            homeDir == gradleHomeDir
    
            and:
            0 * download._
        }
    
        def "recovers from download failure"() {
            def failure = new RuntimeException("broken")
    
            given:
            _ * pathAssembler.getDistribution(configuration) >> localDistribution
            _ * localDistribution.distributionDir >> distributionDir
            _ * localDistribution.zipFile >> zipDestination
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top