Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 395 for broken1 (0.13 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/external/PlayExternalContinuousBuildIntegrationTest.groovy

            executer.withStackTraceChecksDisabled()
            def original = file("app/controllers/Application.scala").text
    
            when: "source file is broken"
            file("app/controllers/Application.scala").text = "class Application extends Controller {"
    
            then:
            fails("runPlay")
    
            when: "source file is fixed"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K 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/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)
  5. 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)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildDocumentationConfigurationCacheSmokeTest.groovy

            result.task(":docs:checkstyleApi").outcome == TaskOutcome.FROM_CACHE
            result.task(":docs:incubationReport").outcome == TaskOutcome.FROM_CACHE
        }
    
        @Ignore("Broken by at least the Asciidoctor plugin, and takes 40mins on CI")
        @NotYetImplemented
        def "can build and test Gradle documentation with configuration cache enabled"() {
    
            given:
            def tasks = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java

        @Override
        protected void setUp() throws Exception {
            file1 = File.createTempFile("kuromoji_", ".txt");
            FileUtil.write(
                    file1.getAbsolutePath(),
                    "token1,seg1,reading1,pos1\ntoken2,seg2,reading2,pos2\ntoken3,seg3,reading3,pos3"
                            .getBytes(Constants.UTF_8));
        }
    
        @Override
        protected void tearDown() throws Exception {
            file1.delete();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top