Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 623 for itest (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/build.gradle

            }
        }
    }
    
    def findGoogleTestCoreLibForPlatform(Platform platform) {
        if (platform.operatingSystem.windows) {
            return "vs2013/gtest.lib"
    //        return "vs2013/gtest-core.lib"
    //        return "cygwin/gtest-core.lib"
    //        return "mingw/gtest-core.lib"
        } else if (platform.operatingSystem.macOsX) {
            return "osx/libgtest.a"
        } else {
            return "linux/libgtest.a"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1007 bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime_cache_test.go

    }
    
    func TestForceUpdateIfOlder(t *testing.T) {
    	ctx := context.Background()
    	runtime := &ctest.FakeRuntime{}
    	cache := NewTestRuntimeCache(runtime)
    
    	// Cache old pods.
    	oldpods := []*ctest.FakePod{{Pod: &Pod{ID: "1111"}}}
    	runtime.PodList = oldpods
    	cache.UpdateCacheWithLock()
    
    	// Update the runtime to new pods.
    	newpods := []*ctest.FakePod{{Pod: &Pod{ID: "1111"}}, {Pod: &Pod{ID: "2222"}}, {Pod: &Pod{ID: "3333"}}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "renderers",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp:__pkg__"],
        deps = [
            "//tensorflow/c/experimental/ops/gen/common",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/build.gradle

    }
    
    def findGoogleTestCoreLibForPlatform(Platform platform) {
        if (platform.operatingSystem.windows) {
    //        return "vs2013/gtest.lib"
            return "vs2015/gtest.lib"
    //        return "vs2013/gtest-core.lib"
    //        return "cygwin/gtest-core.lib"
    //        return "mingw/gtest-core.lib"
        } else if (platform.operatingSystem.macOsX) {
            return "osx/libgtest.a"
        } else {
            return "linux/libgtest.a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/lib/vs2010/gtest.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3M bytes
    - Viewed (0)
  6. src/cmd/go/internal/list/list.go

    With the -find flag, the -deps, -test and -export commands cannot be
    used.
    
    The -test flag causes list to report not only the named packages
    but also their test binaries (for packages with tests), to convey to
    source code analysis tools exactly how test binaries are constructed.
    The reported import path for a test binary is the import path of
    the package followed by a ".test" suffix, as in "math/rand.test".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	var skipFunc func(*distTest) (string, bool)
    	for _, opt := range opts {
    		switch opt := opt.(type) {
    		case rtSkipFunc:
    			skipFunc = opt.skip
    		}
    	}
    	// Register each test package as a separate test.
    	register1 := func(test *goTest) {
    		if test.variant == "" {
    			panic("empty variant")
    		}
    		name := testName(test.pkg, test.variant)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/lib/mingw/gtest.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1M bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/lib/vs2013/gtest.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3M bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/lib/vs2015/gtest.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4M bytes
    - Viewed (0)
Back to top