Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 862 for broken3 (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    			desc: "auth ok",
    			response: &authenticator.Response{
    				User: &user.DefaultInfo{Name: "admin"},
    			},
    			status: true,
    			want: `
    				# HELP authenticated_user_requests [ALPHA] Counter of authenticated requests broken out by username.
    				# TYPE authenticated_user_requests counter
    				authenticated_user_requests{username="admin"} 1
            # HELP authentication_attempts [ALPHA] Counter of authenticated attempts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/metrics.go

    	// Broken down by the operation type.
    	PodWorkerDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           PodWorkerDurationKey,
    			Help:           "Duration in seconds to sync a single pod. Broken down by operation type: create, update, or sync",
    			Buckets:        metrics.DefBuckets,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            """
    
            def lib = new CppLib()
            lib.writeToProject(testDirectory)
            file('src/main/public/ignore.cpp') << 'broken!'
            file('src/main/headers/ignore.cpp') << 'broken!'
            file('src/main/cpp/ignore.h') << 'broken!'
            file('src/main/cpp/ignore.swift') << 'broken!'
    
            when:
            succeeds("xcode")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/UnavailableNativePlatformToolProviderTest.groovy

        def reason = new ToolChainAvailability().unavailable("broken")
        def toolChain = new UnavailablePlatformToolProvider(Stub(OperatingSystemInternal), reason)
    
        def "is not available"() {
            expect:
            !toolChain.available
    
            def visitor = Mock(DiagnosticsVisitor)
    
            when:
            toolChain.explain(visitor)
    
            then:
            1 * visitor.node("broken")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/atomic/atomic.go

    	if len(call.Args) != 2 {
    		return
    	}
    	arg := call.Args[0]
    	broken := false
    
    	gofmt := func(e ast.Expr) string { return analysisutil.Format(pass.Fset, e) }
    
    	if uarg, ok := arg.(*ast.UnaryExpr); ok && uarg.Op == token.AND {
    		broken = gofmt(left) == gofmt(uarg.X)
    	} else if star, ok := left.(*ast.StarExpr); ok {
    		broken = gofmt(star.X) == gofmt(arg)
    	}
    
    	if broken {
    		pass.ReportRangef(left, "direct assignment to atomic value")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                    components {
                        main(NativeExecutableSpec)
                    }
                }
             """
    
            and:
            file("src/main/c/broken.c") << """
            #include <stdio.h>
    
            'broken
    """
            expect:
            fails "mainExecutable"
            failure.assertHasDescription("Execution failed for task ':compileMainExecutableMainC'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/events/BuildExecutionEventsIntegrationTest.groovy

                $path($listener)
                task broken
            """
    
            when:
            executer.expectDocumentedDeprecationWarning("Listener registration using ${registrationPoint}() has been deprecated. This will fail with an error in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#task_execution_events")
            run("broken")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

                executer.expectDeprecationWarnings(warningsCount)
            }
            executer.withWarningMode(warnings)
            warnings == WarningMode.Fail ? fails('thisIsADeprecatedTask', 'broken') : succeeds('thisIsADeprecatedTask', 'broken')
    
            then:
            output.contains('build.gradle:2)') == warningsCount > 0
            output.contains('build.gradle:4)') == warningsCount > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/AbstractCppIntegrationTest.groovy

            and:
            file("src/main/cpp/broken.cpp") << "broken!"
    
            expect:
            fails "assemble"
            failure.assertHasDescription("Execution failed for task '$developmentBinaryCompileTask'.")
            failure.assertHasCause("A build operation failed.")
            failure.assertThatCause(Matchers.containsText("C++ compiler failed while compiling broken.cpp"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top