Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 409 for broken3 (0.13 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskActionIntegrationTest.groovy

                enableFeaturePreview 'STABLE_CONFIGURATION_CACHE'
            """
            buildFile """
                task broken {
                    doLast {
                        taskDependencies
                    }
                }
            """
    
            when:
            fails("broken")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/metrics/metrics.go

    	// Broken down by the operation type.
    	PodWorkerDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           PodWorkerDurationKey,
    			Help:           "Duration in seconds to sync a single pod. Broken down by operation type: create, update, or sync",
    			Buckets:        metrics.DefBuckets,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

            def buildFinishedHandler = new IntermediateResultHandlerCollector()
    
            buildFile << """
                task broken {
                    doLast { throw new RuntimeException("broken") }
                }
            """
    
            when:
            withConnection { connection ->
                def action = connection.action()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

                executer.expectDeprecationWarnings(warningsCount)
            }
            executer.withWarningMode(warnings)
            warnings == WarningMode.Fail ? fails('thisIsADeprecatedTask', 'broken') : succeeds('thisIsADeprecatedTask', 'broken')
    
            then:
            output.contains('build.gradle:2)') == warningsCount > 0
            output.contains('build.gradle:4)') == warningsCount > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                    throw new ArithmeticException('broken')
                }
            """
            expect:
            fails "do-stuff"
    
            failure.assertHasFileName(String.format("Build file '%s'", buildFile))
            failure.assertHasLineNumber(3)
            failure.assertHasDescription("Execution failed for task ':do-stuff'.")
            failure.assertHasCause("broken")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top