Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for successCount (0.23 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

            super(flakinessDataProvider, executionDataProvider);
        }
    
        @Override
        public void render(final ResultsStore store, Writer writer) {
            long successCount = executionDataProvider.getReportScenarios().stream().filter(PerformanceReportScenario::isSuccessful).count();
            long smallRegressions = executionDataProvider.getReportScenarios().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conditions.go

    	seenReasons := sets.New[ParentErrorReason]()
    	successCount := map[k8s.ParentReference]int{}
    	for _, incoming := range parentResults {
    		// We will append it if it is our first occurrence, or the existing one has an error. This means
    		// if *any* section has no errors, we will declare Admitted
    		if incoming.DeniedReason == nil {
    			successCount[incoming.OriginalReference]++
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

      /**
       * The number of times there was a problem establishing a stream that could be due to route
       * chosen. Guarded by this.
       */
      internal var routeFailureCount = 0
    
      private var successCount = 0
      private var refusedStreamCount = 0
    
      /**
       * The maximum number of concurrent streams that can be carried by this connection. If
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                .testClass('org.gradle.ClassErrorTest')
                .assertTestCount(successCount + 1, 1, 0)
                .assertTestFailed(failedTestName, containsString(location))
    
            where:
            location     | beforeStatement      | afterStatement      | successCount | failedTestName
            '@BeforeAll' | 'fail("@BeforeAll")' | ''                  | 0            | "initializationError"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. security/pkg/server/ca/monitoring.go

    	)
    
    	certSignErrorCounts = monitoring.NewSum(
    		"citadel_server_csr_sign_err_count",
    		"The number of errors occurred when signing the CSR.",
    	)
    
    	successCounts = monitoring.NewSum(
    		"citadel_server_success_cert_issuance_count",
    		"The number of certificates issuances that have succeeded.",
    	)
    
    	rootCertExpiryTimestamp = monitoring.NewGauge(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top