Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 866 for broken2 (0.12 sec)

  1. 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)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

            buildA.file("a/build.gradle") << """
                plugins { id("java-gradle-plugin") }
                gradlePlugin {
                    plugins {
                        broken {
                            id = "a-plugin"
                            implementationClass = "org.test.Broken"
                        }
                    }
                }
            """
            buildA.file("b/build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

      - A Directory instance.
      - A RegularFile instance.
      - A URI or URL instance.
      - A TextResource instance."""
    
            when:
            fails "broken"
            then:
            executedAndNotSkipped ":broken"
            failureDescriptionContains("Execution failed for task ':broken'.")
            failureCauseContains(cause)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesAndProjectDependencySubstitutionIntegrationTest.groovy

                            module('org.test:dont-ignore-me:1.0')
                        }
                    }
                }
            }
        }
    
        @ToBeFixedForConfigurationCache(because = "broken file collection")
        def "when no target configuration is specified then a dependency on maven module includes the runtime dependencies of target project that is using the Java plugin"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

            repoC.file("settings.gradle") << """
                ${settings}
            """
            repoC.file("build.gradle") << """
                classes.doLast {
                    throw new RuntimeException("broken")
                }
            """
            repoC.commit("initial version")
            repoC.createLightWeightTag("1.2")
    
            dependency(dependencyName)
            repoB.commit("initial version")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel_test.go

    		expectCreateErr   bool
    		expectAllocation  []string
    		expectAllocateErr bool
    	}{
    		"empty": {},
    
    		"broken-filter": {
    			filter: filterBrokenType,
    
    			expectCreateErr: true,
    		},
    
    		"broken-request": {
    			requests: []*resourceapi.NamedResourcesRequest{requestBrokenType},
    
    			expectCreateErr: true,
    		},
    
    		"no-resources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/StreamingBuildActionCrossVersionTest.groovy

            models[1] instanceof CustomModel
        }
    
        def "listener is isolated when it fails with an exception"() {
            when:
            def listener = { throw new RuntimeException("broken") } as StreamedValueListener
    
            withConnection {
                def builder = it.action(new ModelStreamingBuildAction())
                collectOutputs(builder)
                builder.setStreamedValueListener(listener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:20:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/https/Handler.java

     * capabilities to the default HTTPS handler. This acts as a wrapper,
     * handling authentication and passing control to the underlying
     * stream handler.
     * 
     * @deprecated {@link NtlmHttpURLConnection} is broken by design.
     */
    @Deprecated
    public class Handler extends jcifs.http.Handler {
    
        /**
         * The default HTTPS port (<code>443</code>).
         */
        public static final int DEFAULT_HTTPS_PORT = 443;
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMethod.java

            replaceBody(new SendFixedContent(404, "not found"), null);
            return this;
        }
    
        @Override
        public BuildableExpectedRequest broken() {
            replaceBody(new SendFixedContent(500, "broken"), null);
            return this;
        }
    
        @Override
        public BuildableExpectedRequest send(String content) {
            replaceBody(new SendFixedContent(200, content), null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestEventSerializerTest.groovy

        }
    
        def "serializes Throwable"() {
            def failure = new GradleException("broken", new RuntimeException("cause"))
    
            when:
            def result = serialize(failure, Throwable)
    
            then:
            result.class == GradleException
            result.message == "broken"
            result.cause.class == RuntimeException
            result.cause.message == "cause"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top