Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 335 for broken1 (0.12 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                                }
                                // Else, cancelled cleanly, so keep doing work
                                break;
                            case Broken:
                                throw new IllegalStateException("This daemon is in a broken state.");
                            case StopRequested:
                                LOGGER.debug("daemon stop has been requested. Sleeping until state changes.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

            outputContains("EVENT: finish :notUpToDate OK")
    
            when:
            fails("broken")
    
            then:
            output.count("EVENT:") == 3
            outputContains("EVENT: finish :notUpToDate OK")
            outputContains("EVENT: finish :upToDate OK")
            outputContains("EVENT: finish :broken FAILED")
    
            when:
            fails("broken")
    
            then:
            output.count("EVENT:") == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

            outputContains("present failed with: Cannot query the value of extension 'thing' property 'prop' because configuration of root project 'broken' has not completed yet.")
            outputContains("get in afterEvaluate failed with: Cannot query the value of extension 'thing' property 'prop' because configuration of root project 'broken' has not completed yet.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            """
    
            def lib = new CppLib()
            lib.writeToProject(testDirectory)
            file('src/main/public/ignore.cpp') << 'broken!'
            file('src/main/headers/ignore.cpp') << 'broken!'
            file('src/main/cpp/ignore.h') << 'broken!'
            file('src/main/cpp/ignore.swift') << 'broken!'
    
            when:
            succeeds("xcode")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top