Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 255 for broken1 (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource"},
    	)
    
    	TerminatedWatchersCounter = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "terminated_watchers_total",
    			Help:           "Counter of watchers closed due to unresponsiveness broken by resource type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

            when:
            configurationCacheFails("broken")
    
            then:
            outputContains("Configuration cache entry discarded with 2 problems.")
            problems.assertFailureHasProblems(failure) {
                withProblem("Build file 'build.gradle': line 3: registration of listener on 'Gradle.addListener' is unsupported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/tool/tool.go

    			if !*brokenFlag && platform.Broken(p.GOOS, p.GOARCH) {
    				continue
    			}
    			fmt.Println(p)
    		}
    		return true
    	}
    
    	type jsonResult struct {
    		GOOS         string
    		GOARCH       string
    		CgoSupported bool
    		FirstClass   bool
    		Broken       bool `json:",omitempty"`
    	}
    
    	var results []jsonResult
    	for _, p := range platform.List {
    		broken := platform.Broken(p.GOOS, p.GOARCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                    throw new ArithmeticException('broken')
                }
            """
            expect:
            fails "do-stuff"
    
            failure.assertHasFileName(String.format("Build file '%s'", buildFile))
            failure.assertHasLineNumber(3)
            failure.assertHasDescription("Execution failed for task ':do-stuff'.")
            failure.assertHasCause("broken")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

    """
            buildFile << """
        evaluationDependsOn 'child'
        task t
    """
            final childBuildFile = file("child/build.gradle")
            childBuildFile << """
        def broken = { ->
            throw new RuntimeException('failure')
        }
        broken()
    """
    
            when:
            fails()
    
            then:
            failure.assertHasDescription("A problem occurred evaluating project ':child'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/values.yaml

          # This defines the action the controller will take when a pod is detected as broken.
    
          # labelPods will label all pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
          # This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    maxParallelUsages = 1
                }
    
                task broken(type: Consumer) {
                    // reference will be set by name
                }
            """
            enableStableConfigurationCache()
            executer.expectDocumentedDeprecationWarning(
                "Build service 'counter' is being used by task ':broken' without the corresponding declaration via 'Task#usesService'. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top