Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 670 for broken2 (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/model/InstantiatorBackedObjectFactory.java

        @Override
        public <T> SetProperty<T> setProperty(Class<T> elementType) {
            return broken();
        }
    
        @Override
        public <K, V> MapProperty<K, V> mapProperty(Class<K> keyType, Class<V> valueType) {
            return broken();
        }
    
        @Override
        public DirectoryProperty directoryProperty() {
            return broken();
        }
    
        @Override
        public RegularFileProperty fileProperty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top