Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 205 for utiltest (0.55 sec)

  1. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/testReport/groovy/util/src/test/java/org/gradle/sample/UtilTest.java

    package org.gradle.sample;
    
    import org.junit.Test;
    
    public class UtilTest {
        @Test
        public void ok() {
            System.out.println("hello from UtilTest.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 169 bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/UtilTest.kt

    import kotlin.time.Duration.Companion.milliseconds
    import kotlin.time.Duration.Companion.nanoseconds
    import okio.buffer
    import okio.source
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.assertThrows
    
    class UtilTest {
      @Test
      fun socketIsHealthy() {
        val localhost = InetAddress.getLoopbackAddress()
        val serverSocket = ServerSocket(0, 1, localhost)
    
        val socket = Socket()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/testReport/kotlin/util/src/test/java/org/gradle/sample/UtilTest.java

    package org.gradle.sample;
    
    import org.junit.Test;
    
    public class UtilTest {
        @Test
        public void ok() {
            System.out.println("hello from UtilTest.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 169 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(UtilTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                     \\--- utilTest:cUnitExe (t)
    
                libTest - Components that depend on Google test suite 'libTest'
                \\--- libTest:googleTestExe (t)
    
                utilTest - Components that depend on Cunit test suite 'utilTest'
                \\--- utilTest:cUnitExe (t)
    
                (t) - Test suite binary
                """.stripIndent()
    
            where:
            option          | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/util_test.cc

    namespace {
    
    using tsl::testing::StatusIs;
    
    TEST(UtilTest, TestGetWriteVersionV2) {
      SavedModel saved_model_proto;
      MetaGraphDef* meta_graphdef = saved_model_proto.add_meta_graphs();
      auto* object_graph_def = meta_graphdef->mutable_object_graph_def();
      object_graph_def->add_nodes();
      EXPECT_EQ(GetWriteVersion(saved_model_proto), "2");
    }
    
    TEST(UtilTest, TestGetWriteVersionV1) {
      SavedModel saved_model_proto;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/util/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(UtilTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  10. native-image-tests/src/main/resources/testlist.txt

    okhttp3.URLConnectionTest
    okhttp3.WebPlatformUrlTest
    okhttp3.brotli.BrotliInterceptorJavaApiTest
    okhttp3.brotli.BrotliInterceptorTest
    okhttp3.dnsoverhttps.DnsOverHttpsTest
    okhttp3.dnsoverhttps.DnsRecordCodecTest
    okhttp3.internal.UtilTest
    okhttp3.internal.authenticator.JavaNetAuthenticatorTest
    okhttp3.internal.cache.DiskLruCacheTest
    okhttp3.internal.cache2.FileOperatorTest
    okhttp3.internal.cache2.RelayTest
    okhttp3.internal.concurrent.TaskLoggerTest
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu May 11 14:48:57 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top