Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for suiteName (0.14 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitTestResults.groovy

        }
    
        class Suite {
            final Node suiteNode
    
            Suite(Node suiteNode) {
                this.suiteNode = suiteNode
            }
    
            String getName() {
                return suiteNode.SUITE_NAME.text().trim()
            }
    
            List<String> getPassingTests() {
                suiteNode.CUNIT_RUN_TEST_RECORD.CUNIT_RUN_TEST_SUCCESS.TEST_NAME*.text()*.trim()
            }
    
            List<String> getFailingTests() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. samples/tlssurvey/src/main/kotlin/okhttp3/survey/ssllabs/SslLabsClient.kt

        return sslLabsApi.clients().map { userAgent ->
          Client(
            userAgent = userAgent.name,
            version = userAgent.version,
            platform = userAgent.platform,
            enabled = userAgent.suiteNames.map { SuiteId(null, it) },
          )
        }
      }
    }
    
    suspend fun main() {
      val sslLabsClient =
        SslLabsClient(
          callFactory = OkHttpClient(),
        )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 01:44:15 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

            file("build/test-results/helloTest/CUnitAutomated-Listing.xml").assertExists()
    
            def testResults = new CUnitTestResults(file("build/test-results/helloTest/CUnitAutomated-Results.xml"))
            testResults.suiteNames == ['hello test']
            testResults.suites['hello test'].passingTests == ['test_sum']
            testResults.suites['hello test'].failingTests == []
            testResults.checkTestCases(1, 1, 0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    	MaxILMExpiryRules int                             // maximum ILM expiry rules across sites
    	Sites             map[string]madmin.PeerInfo      // deployment->sitename
    	StatsSummary      map[string]madmin.SRSiteSummary // map of deployment id -> site stat
    	// BucketStats map of bucket to slice of deployment IDs with stats. This is populated only if there are
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top