Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 864 for broken1 (0.74 sec)

  1. pkg/apis/extensions/types.go

    limitations under the License.
    */
    
    /*
    This file (together with pkg/apis/extensions/v1beta1/types.go) contain the experimental
    types in kubernetes. These API objects are experimental, meaning that the
    APIs may be broken at any time by the kubernetes team.
    
    DISCLAIMER: The implementation of the experimental API group itself is
    a temporary one meant as a stopgap solution until kubernetes has proper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:21:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomBinaryTasksIntegrationTest.groovy

            class BinaryTasksPlugin extends RuleSource {
                @BinaryTasks
                void createSampleComponentComponents(ModelMap<Task> tasks, SampleBinary binary) {
                    throw new RuntimeException('broken')
                }
            }
            apply plugin:BinaryTasksPlugin
            model {
                tasks {
                    checkModel(Task) {
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/exceptions/ContextAwareExceptionTest.groovy

        }
    
        def "visitor visits causes of multi-cause exception"() {
            def childCause1 = new RuntimeException()
            def childCause2 = new RuntimeException()
            def cause = new DefaultMultiCauseException("broken", childCause1, childCause2)
            def e = new ContextAwareException(cause)
    
            when:
            e.accept(visitor)
    
            then:
            1 * visitor.visitCause(cause)
            1 * visitor.endVisiting()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCancellationCrossVersionSpec.groovy

            def resultHandler = new TestResultHandler()
    
            when:
            withConnection { ProjectConnection connection ->
                def build = connection.newTestLauncher()
                build.withJvmTestClasses("Broken")
                build.withCancellationToken(cancel.token())
                build.run(resultHandler)
                sync.waitForAllPendingCalls(resultHandler)
                cancel.cancel()
                sync.releaseAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/metrics.go

    )
    
    var (
    	regenerationCounter = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Name:           "apiextensions_openapi_v3_regeneration_count",
    			Help:           "Counter of OpenAPI v3 spec regeneration count broken down by group, version, causing CRD and reason.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"group", "version", "crd", "reason"},
    	)
    )
    
    func init() {
    	legacyregistry.MustRegister(regenerationCounter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 22:10:50 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/FileSpec.groovy

        String name
        // Url written in the Gradle Module Metadata
        String url
        // Url where this file will be published.
        // Normally publishUrl is the same as url, but it can be set differently for testing some broken behavior.
        String publishUrl
        String ext = 'jar'
    
        FileSpec(String name) {
            this(name, name, name)
        }
    
        FileSpec(String name, String url) {
            this(name, url, url)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         * The [KtModule] is being removed. Because this event is published before the removal, the [KtModule] can still be accessed to clear
         * caches. It should be removed from any caches managed by the subscriber to avoid stale or broken keys/values.
         */
        REMOVAL,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/FileComparisonTestAssertionFailure.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * Represent a test assertion failure where the test fails due to a broken assertion.
     *
     * @since 8.3
     */
    @Incubating
    public interface FileComparisonTestAssertionFailure extends TestAssertionFailure {
    
        /**
         * Returns the string representation of the expected value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

                Stub(Path),
                Stub(Path),
                'test project'
            )
            def mid = DefaultModuleVersionIdentifier.newId("foo", "bar", "1.0")
            org.gradle.internal.Factory<String> broken = { "too bad" }
            def dep = new DefaultUnresolvedDependencyResult(
                Stub(ComponentSelector), false,
                Stub(ComponentSelectionReason),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pkg/registry/core/service/portallocator/controller/metrics.go

    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "port_errors_total",
    			Help:           "Number of errors detected on ports by the repair loop broken down by type of error: leak, repair, full, outOfRange, duplicate, unknown",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"type"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top