Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 747 for broken1 (0.22 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                        throw new RuntimeException("broken")
                    }
                }
    
                class OtherRules extends RuleSource {
                }
    
                apply plugin: MyPlugin
            '''
    
            expect:
            fails("model")
            failure.assertHasCause("Exception thrown while executing model rule: MyPlugin#rules")
            failure.assertHasCause("broken")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

            outputContains("get elements failed with: Cannot query the value of this file collection because configuration of root project 'broken' has not completed yet.")
            outputContains("get files in afterEvaluate failed with: Cannot query the value of this file collection because configuration of root project 'broken' has not completed yet.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            }
    
            @Override
            void expectGetStatus(HttpModule module, String status = 'release', boolean broken = false) {
                def path = pathOf(module)
                statusFiles[path.replace('/', ':')] = expectGetStatusOf(path, status, broken)
            }
    
            private String pathOf(HttpModule module) {
                if (module instanceof IvyHttpModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            when:
            configurationCacheFails 'broken'
    
            then:
            def reportDir1 = reportDir()
            reportDir1?.isDirectory()
    
            when:
            configurationCacheFails 'alsoBroken'
    
            then:
            def reportDir2 = reportDir()
            reportDir2?.isDirectory()
            reportDir2 != reportDir1
    
            when:
            configurationCacheFails 'broken'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task broken = task("broken", finalizedBy: [finalizer], failure: new RuntimeException())
            Task task = task("task", dependsOn: [broken])
    
            when:
            executionPlan.setContinueOnFailure(continueOnFailure)
            addToGraphAndPopulate(task)
    
            then:
            executionPlan.tasks as List == [broken, finalizerDepDep, finalizerDep, finalizer, task]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            "File"      | InputFile
            "Directory" | InputDirectory
        }
    
        @Issue('https://github.com/gradle/gradle/issues/9904')
        def "task with a broken #classpathType.simpleName root input is accepted"() {
            def brokenClasspathEntry = file('broken.jar').createLink("broken.jar.target")
            def output = file("output.txt")
    
            buildFile << """
                class CustomTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/CachingDependencyResultFactoryTest.groovy

            def differentRequested = factory.createUnresolvedDependency(selector('xxx'), fromModule, false, selectedModule, new ModuleVersionResolveException(moduleVersionSelector('xxx'), broken))
            def differentFrom = factory.createUnresolvedDependency(selector('requested'), newModule('xxx'), false, selectedModule, new ModuleVersionResolveException(moduleVersionSelector('requested'), broken))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/MainTest.groovy

        def reportsActionExecutionFailure() {
            given:
            def thrownFailure = new RuntimeException('broken')
            action { throw thrownFailure }
    
            when:
            main.run()
    
            then:
            outputs.stdErr.contains('FAILURE: Build failed with an exception')
            outputs.stdErr.contains('broken')
            completedWithFailure
            failure == thrownFailure
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        static def failure = TestFailure.fromTestFrameworkFailure(new RuntimeException('broken'))
    
        public static junit.framework.Test suite() {
            throw failure.rawFailure
        }
    }
    
    public class ATestSetUpWithBrokenSetUp extends TestSetup {
        static def failure = TestFailure.fromTestFrameworkFailure(new RuntimeException('broken'))
    
        def ATestSetUpWithBrokenSetUp() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/tool/tool.go

    			if !*brokenFlag && platform.Broken(p.GOOS, p.GOARCH) {
    				continue
    			}
    			fmt.Println(p)
    		}
    		return true
    	}
    
    	type jsonResult struct {
    		GOOS         string
    		GOARCH       string
    		CgoSupported bool
    		FirstClass   bool
    		Broken       bool `json:",omitempty"`
    	}
    
    	var results []jsonResult
    	for _, p := range platform.List {
    		broken := platform.Broken(p.GOOS, p.GOARCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top