Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 623 for itest (0.15 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/lib/vs2013/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. testing/performance/src/templates/native-dependents/test_main.cpp

    #include "gtest/gtest.h"
    #include "${generatedId}/header.h"
    
    using namespace testing;
    <%
    if (hasTests) {
        out.println """
    TEST(GeneratedTests, test_lib) {
        ASSERT_EQ(0, function_${generatedId}());
    }"""
    }
    %>
    
    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: Thu Apr 04 07:21:38 UTC 2024
    - 316 bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			crd := &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "foos." + test.group, Annotations: map[string]string{v1beta1.KubeAPIApprovedAnnotation: test.annotationValue}, ResourceVersion: "1"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group:    test.group,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/testing/iotest/example_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package iotest_test
    
    import (
    	"errors"
    	"fmt"
    	"testing/iotest"
    )
    
    func ExampleErrReader() {
    	// A reader that always returns a custom error.
    	r := iotest.ErrReader(errors.New("custom error"))
    	n, err := r.Read(nil)
    	fmt.Printf("n:   %d\nerr: %q\n", n, err)
    
    	// Output:
    	// n:   0
    	// err: "custom error"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 00:08:36 UTC 2020
    - 469 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top