Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 255 for broken2 (0.36 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    [[releases]]
    == Releases
    
    Information on Gradle releases and how to install Gradle is found on the <<installation.adoc#installation,Installation page>>.
    
    [[content]]
    == Content
    
    The Gradle User Manual is broken down into the following sections:
    
    <<getting_started_eng.adoc#introduction,Running Gradle Builds>> :: Learn Gradle basics and how to use Gradle to build your project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K 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. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownReflectionFailure != null) {
          log.get().log(Level.SEVERE, "SafeAtomicHelper is broken!", thrownReflectionFailure);
        }
      }
    
      AggregateFutureState(int remainingFutures) {
        this.remaining = remainingFutures;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CommandLineTaskExecutionIntegrationTest.groovy

    class CommandLineTaskExecutionIntegrationTest extends AbstractIntegrationSpec {
        def "fails with badly formed task name"() {
            createDirs("a")
            settingsFile """
                rootProject.name = 'broken'
                include("a")
            """
            buildFile """
            """
    
            when:
            fails(taskName)
    
            then:
            failure.assertHasDescription(message)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            buildSrc << """
                classes.doLast {
                    throw new RuntimeException("broken")
                }
            """
    
            when:
            fails()
    
            then:
            failure.assertHasDescription("Execution failed for task ':buildSrc:classes'.")
            failure.assertHasCause("broken")
    
            where:
            settings                     | display
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	"windows/arm64":   true,
    }
    
    // List of platforms that are marked as broken ports.
    // These require -force flag to build, and also
    // get filtered out of cgoEnabled for 'dist list'.
    // See go.dev/issue/56679.
    var broken = map[string]bool{
    	"linux/sparc64":  true, // An incomplete port. See CL 132155.
    	"openbsd/mips64": true, // Broken: go.dev/issue/58110.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

     *
     * <p>Resolution happens in multiple steps. The first is to calculate the dependency graph, and the subsequent steps select artifacts. Artifact resolution is broken down into 3 main steps:</p>
     * <ul>
     *     <li>Select a variant of the component instance. The variant selected for artifact resolution may be different to that used for graph resolution,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top