Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 636 for tent (0.13 sec)

  1. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "createLotsOfTasks",
        "linux" : 215
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.VerboseTestOutputPerformanceTest.cleanTest test with verbose test output",
      "durations" : [ {
        "testProject" : "withVerboseJUnit",
        "linux" : 211
      }, {
        "testProject" : "withVerboseTestNG",
        "linux" : 200
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // meaning that the death test child process will re-execute the test binary
    // from the start, running only a single death test, or "fast",
    // meaning that the child process will execute the test logic immediately
    // after forking.
    GTEST_DECLARE_string_(death_test_style);
    
    #if GTEST_HAS_DEATH_TEST
    
    namespace internal {
    
    // Returns a Boolean value indicating whether the caller is currently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // Typed (aka type-driven) tests repeat the same test for types in a
    // list.  You must know which types you want to test with when writing
    // typed tests. Here's how you do it:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    template <typename T>
    class FooTest : public testing::Test {
     public:
      ...
      typedef std::list<T> List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/encoding/gob/doc.go

    Strings and slices of bytes are sent as an unsigned count followed by that many
    uninterpreted bytes of the value.
    
    All other slices and arrays are sent as an unsigned count followed by that many
    elements using the standard gob encoding for their type, recursively.
    
    Maps are sent as an unsigned count followed by that many key, element
    pairs. Empty but non-nil maps are sent, so if the receiver has not allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

    // RUN: tf-opt -split-input-file -tf-test-resource-alias-analysis -verify-diagnostics %s | FileCheck %s
    
    // Test 2 resources that do not alias.
    
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-LABEL: func @non_aliasing_reads_writes
    // expected-remark@below {{Region #0, Arg #0, ID 1 : 1}}
    // expected-remark@below {{Region #0, Arg #1, ID 2 : 2}}
    func.func @non_aliasing_reads_writes(
      %arg0: !tf_res,
      %arg1: !tf_res,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    Jason van Zyl <******@****.***> 1092078151 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    #Others
    / http://www.example.com/test s:http h:www.example.com p:/
    /test.txt  s:http h:www.example.com p:/test.txt
    .  s:http h:www.example.com p:/
    ..  s:http h:www.example.com p:/
    test.txt  s:http h:www.example.com p:/test.txt
    ./test.txt  s:http h:www.example.com p:/test.txt
    ../test.txt  s:http h:www.example.com p:/test.txt
    ../aaa/test.txt  s:http h:www.example.com p:/aaa/test.txt
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_tls13.go

    		return errors.New("tls: server sent an unnecessary HelloRetryRequest message")
    	}
    
    	if hs.serverHello.cookie != nil {
    		hello.cookie = hs.serverHello.cookie
    	}
    
    	if hs.serverHello.serverShare.group != 0 {
    		c.sendAlert(alertDecodeError)
    		return errors.New("tls: received malformed key_share extension")
    	}
    
    	// If the server sent a key_share extension selecting a group, ensure it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      static bool Create(const char* statement, const RE* regex,
                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        taskFaker.runTasks()
        assertThat(client.closed).isTrue()
        server.listener.assertExhausted() // Client should not have sent second close.
        client.listener.assertExhausted() // Server should not have sent second close.
      }
    
      @Test
      fun serverCloseBreaksReadMessageLoop() {
        server.webSocket!!.send("Hello!")
        server.webSocket!!.close(1000, "Bye!")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top