Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,547 for xtest (0.1 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/lib/vs2010/gtest.lib

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3M bytes
    - Viewed (0)
  2. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operatorsTest/cpp/test_main.cpp

    #include "gtest/gtest.h"
    
    using namespace testing;
    
    int main(int argc, char **argv) {
      testing::InitGoogleTest(&argc, argv);
      return RUN_ALL_TESTS();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 153 bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // type-parameterized tests in one type-parameterized test case.
    // Please contact ******@****.*** if you need
    // more.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_
    
    #include "gtest/internal/gtest-port.h"
    
    // #ifdef __GNUC__ is too general here.  It is possible to use gcc without using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operatorsTest/cpp/test_plus.cpp

    #include "gtest/gtest.h"
    #include "operators.h"
    
    using namespace testing;
    
    TEST(OperatorTests, test_plus) {
      ASSERT_TRUE(plus(0, 2) == 2);
      ASSERT_TRUE(plus(0, -2) == -2);
      ASSERT_TRUE(plus(2, 2) == 4);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  6. test/64bit.go

    	"	}\n" +
    	"}\n" +
    	"\n"
    
    func varTests() {
    	fmt.Fprint(bout, prolog)
    	for _, a := range int64Values {
    		fmt.Fprintf(bout, "func test%v() {\n", ntest)
    		ntest++
    		fmt.Fprintf(bout, "\ttestInt64Unary(%v, %v, %v, %v);\n", a, a, a.Com(), a.Neg())
    		for _, b := range int64Values {
    			var div, mod Int64
    			dodiv := false
    			var zero Int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/common/BUILD

        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "common",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        deps = [
            "//tensorflow/c/experimental/ops/gen/model",
            "//tensorflow/core:framework",
            "//tensorflow/core:framework_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 18:35:29 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operatorsTest/cpp/test_minus.cpp

    #include "gtest/gtest.h"
    #include "operators.h"
    
    using namespace testing;
    
    TEST(OperatorTests, test_minus) {
      ASSERT_TRUE(minus(2, 0) == 2);
      ASSERT_TRUE(minus(0, -2) == 2);
      ASSERT_TRUE(minus(2, 2) == 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 211 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/lib/cygwin/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)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/lib/cygwin/gtest.lib

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1M bytes
    - Viewed (0)
Back to top