Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 291 for broken3 (0.13 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginEndOfBuildCallbackIntegrationTest.groovy

            then:
            plugin.assertEndOfBuildWithFailure(output, null)
            failure.assertHasDescription("broken")
    
            when:
            fails succeedingTaskName, "-Dbuild-listener-failure"
    
            then:
            plugin.assertEndOfBuildWithFailure(output, null)
            failure.assertHasDescription("broken")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitSmokeMultiVersionIntegrationTest.groovy

                public class Junit4Test {
                    @Test
                    public void ok() {
                    }
    
                    @Test
                    @Ignore
                    public void broken() {
                        throw new RuntimeException();
                    }
    
                    public void helpermethod() {
                    }
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcEventsIntegrationTest.groovy

            file("buildSrc/build.gradle") << """
                gradle.buildFinished {
                    println "buildSrc finished"
                    throw new RuntimeException("broken")
                }
            """
            buildFile << """
                gradle.buildFinished { result ->
                    println "root build finished"
                    assert result.failure != null
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:27 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

                                        tsl::FileSystem** result) override {
        return absl::InternalError("Broken file system");
      }
    
     private:
      void GetLocalTempDirectories(std::vector<tsl::string>* list) override {
        list->push_back("/tmp");
      }
    };
    
    // Represents an environment with broken file system and no available local tmp
    // directories.
    class TestEnvBrokenFileSystemAndNoLocalTempDirs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. cni/pkg/config/config.go

    	// The node name that the CNI DaemonSet runs on
    	NodeName string
    
    	// Key and value for broken pod label
    	LabelKey   string
    	LabelValue string
    
    	// Whether to fix race condition by repairing them
    	RepairPods bool
    
    	// Whether to fix race condition by delete broken pods
    	DeletePods bool
    
    	// Whether to label broken pods
    	LabelPods bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultDisambiguationRuleChainTest.groovy

            1 * details.closestMatch("value1")
        }
    
        static class BrokenRule implements AttributeDisambiguationRule<String> {
            static failure = new RuntimeException("broken")
    
            @Override
            void execute(MultipleCandidatesDetails<String> details) {
                throw failure
            }
        }
    
        def "wraps failure to execute rule"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.groovy

                }
            """
        }
    
        @Override
        List<String> getPluginList() {
            ['objective-c']
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("objc", "broken.m", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "ObjectiveCSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

            file("child/build.gradle") << """
                gradle.buildFinished {
                    throw new RuntimeException("broken")
                }
                task t
            """
    
            runAndFail("t")
    
            then:
            output.matches("""(?s).*
    1 actionable task: 1 executed.*
    failure message: broken
    .*""")
        }
    
        def "can only register one listener"() {
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    env GOCACHE=$WORK${/}.cache
    mkdir $GOCACHE
    
    go build -x runtime/cgo
    
    	# Tell our fake clang to stop working.
    	# Previously, 'go build -x runtime/cgo' would continue to
    	# succeed because both the broken clang and the non-broken one
    	# resulted in a cache key with no clang version information.
    env GO_BREAK_CLANG=1
    ! go build -x runtime/cgo
    stderr '# runtime/cgo\nGO_BREAK_CLANG is set'
    
    -- go.mod --
    module example/issue64423
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                   tests      1      1      1      0        0
                 asserts      3      3      3      0      n/a
    """
            }
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("c", "broken.c", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "CSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top