Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 335 for broken1 (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            Task broken = task("broken", failure: new RuntimeException("failure"))
            Task finalized = task("finalized", finalizedBy: [finalizer])
    
            when:
            addToGraphAndPopulate([broken, finalized])
    
            then:
            executionPlan.tasks as List == [broken, finalized, finalizerDependency, finalizer]
            executedTasks == [broken]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

                    into 'libs'
                    from configurations.compile
                }
                """
        }
    
        @ToBeFixedForConfigurationCache
        def "can run offline mode after hitting broken repo url"() {
            given:
            buildFileWithSnapshotDependency()
            and:
            noAuthorizationRepo()
    
            publishedMavenModule()
            when:
            moduleAvailableViaHttp()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    	registerBooleanParameter(constants.RepairDeletePods, false, "Controller will delete pods when detecting pod broken by race condition")
    	registerBooleanParameter(constants.RepairLabelPods, false, "Controller will label pods when detecting pod broken by race condition")
    	registerStringParameter(constants.RepairLabelKey, "cni.istio.io/uninitialized",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

            configurations.conf.dependencies.add project.dependencies.create("org:default-dependency:1.0")
        }
    }
    task broken {
        def child = configurations.child
        def conf = configurations.conf
        doLast {
            child.files
            conf.files
        }
    }
    """
    
            when:
            fails "broken"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

            then:
            homeDir == gradleHomeDir
    
            and:
            0 * download._
        }
    
        def "recovers from download failure"() {
            def failure = new RuntimeException("broken")
    
            given:
            _ * pathAssembler.getDistribution(configuration) >> localDistribution
            _ * localDistribution.distributionDir >> distributionDir
            _ * localDistribution.zipFile >> zipDestination
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    				APIVersion:        "v1",
    				Resource:          "pods",
    				IsResourceRequest: true,
    			},
    			isMutating: false,
    			want: `
    			            # HELP apiserver_request_total [STABLE] Counter of apiserver requests broken out for each verb, dry run value, group, version, resource, scope, component, and HTTP response code.
    			            # TYPE apiserver_request_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

                        throw new RuntimeException('broken')
                    }
                }
                apply plugin: MyComponentBinariesPlugin
            """
    
            then:
            fails "model"
            failure.assertHasCause('Exception thrown while executing model rule: MyComponentBinariesPlugin#createBinariesForSampleLibrary')
            failure.assertHasCause('broken')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            when:
            process(ATestClassWithRunner)
    
            then:
            1 * processor.started({ it.id == 1 }, { it.parentId == null })
            1 * processor.started({ it.id == 2 && it.name == "broken" && it.className == ATestClassWithRunner.name }, { it.parentId == 1 })
            1 * processor.started({ it.id == 3 && it.name == "ok" && it.className == ATestClassWithRunner.name }, { it.parentId == 1 })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/xml/SimpleXmlWriterSpec.groovy

            writer.startElement("root")
            writer.characters(chars)
            writer.startElement("broken").attribute("name", chars)
            writer.startCDATA().characters(chars).endCDATA()
            writer.endElement()
            writer.endElement()
    
            then:
            xml.contains('<root>?<broken name="?"><![CDATA[?]]></broken></root>')
    
            where:
            chars << ["\u0000", "\ud800", "\udfff", "\ufffe"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 14.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            }
        }
    }
            """
    
            and:
            helloWorldApp.writeSources(file("a/src/main"))
            helloWorldApp.writeSources(file("b/src/main"))
    
            file("b/src/main/cpp/broken.cpp") << """
        A broken C++ file
    """
    
            expect:
            fails "mainExecutable"
            failure.assertThatCause(CoreMatchers.not(CoreMatchers.containsString("Could not stop")))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top