Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for utiltest (0.3 sec)

  1. cmd/test-utils_test.go

    jiuker <******@****.***> 1718034649 +0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    class GTEST_API_ UnitTest {
     public:
      // Gets the singleton UnitTest object.  The first time this method
      // is called, a UnitTest object is constructed and returned.
      // Consecutive calls will return the same object.
      static UnitTest* GetInstance();
    
      // Runs all tests in this UnitTest object and prints the result.
      // Returns 0 if successful, or 1 otherwise.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    class GTEST_API_ UnitTest {
     public:
      // Gets the singleton UnitTest object.  The first time this method
      // is called, a UnitTest object is constructed and returned.
      // Consecutive calls will return the same object.
      static UnitTest* GetInstance();
    
      // Runs all tests in this UnitTest object and prints the result.
      // Returns 0 if successful, or 1 otherwise.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    			`<c>C</c>` +
    			`<b>B</b>` +
    			`<a>A</a>` +
    			`</parent>` +
    			`</result>`,
    	},
    	{
    		Value: &NilTest{A: "A", B: nil, C: "C"},
    		ExpectXML: `<NilTest>` +
    			`<parent1>` +
    			`<parent2><a>A</a></parent2>` +
    			`<parent2><c>C</c></parent2>` +
    			`</parent1>` +
    			`</NilTest>`,
    		MarshalOnly: true, // Uses interface{}
    	},
    	{
    		Value: &MixedNested{A: "A", B: "B", C: "C", D: "D"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apimachinery/pkg/util/wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/net/url/url_test.go

    	"encoding/gob"
    	"encoding/json"
    	"fmt"
    	"io"
    	"net"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    type URLTest struct {
    	in        string
    	out       *URL   // expected parse
    	roundtrip string // expected result of reserializing the URL; empty means same as "in".
    }
    
    var urltests = []URLTest{
    	// no path
    	{
    		"http://www.google.com",
    		&URL{
    			Scheme: "http",
    			Host:   "www.google.com",
    		},
    		"",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    	endptspkg "k8s.io/kubernetes/pkg/api/v1/endpoints"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	controllerpkg "k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/test/utils/ktesting"
    	utilnet "k8s.io/utils/net"
    	"k8s.io/utils/pointer"
    )
    
    var alwaysReady = func() bool { return true }
    var neverReady = func() bool { return false }
    var emptyNodeName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

          : public test_case_name { \
       public: \
        GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \
        virtual void TestBody(); \
       private: \
        static int AddToRegistry() { \
          ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \
              GetTestCasePatternHolder<test_case_name>(\
                  #test_case_name, __FILE__, __LINE__)->AddTestPattern(\
                      #test_case_name, \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

          : public test_case_name { \
       public: \
        GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \
        virtual void TestBody(); \
       private: \
        static int AddToRegistry() { \
          ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \
              GetTestCasePatternHolder<test_case_name>(\
                  #test_case_name, __FILE__, __LINE__)->AddTestPattern(\
                      #test_case_name, \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      // replaces `/` with `_`.
      //
      // We trade in one extra initialization for readability.
      ModularFileSystemTest() {
        const std::string test_name = tensorflow::str_util::StringReplace(
            ::testing::UnitTest::GetInstance()->current_test_info()->name(), "/",
            "_", /*replace_all=*/true);
        if (!cloud_path_.empty()) {
          // We have to join path for non-local filesystem manually to make sure
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
Back to top