Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 266 for u8test (0.13 sec)

  1. tensorflow/compiler/aot/test.cc

    #include "tensorflow/core/platform/cpu_info.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/test_benchmark.h"
    
    // Macros that expand to tokens based on the entry point name.
    // clang-format off
    #define CPP_CLASS {{TFCOMPILE_CPP_CLASS}}  // NOLINT(whitespace/braces)
    #define TEST_NAME {{TFCOMPILE_NAME}}Test   // NOLINT(whitespace/braces)
    #define BM_NAME   BM_{{TFCOMPILE_NAME}}    // NOLINT(whitespace/braces)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/resources/META-INF/gradle-plugins/org.gradle.xctest.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 691 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitIntegrationTest.groovy

    import org.gradle.integtests.fixtures.JUnitXmlTestExecutionResult
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    
    /**
     * This class contains tests that don't fit well into other function-specific test classes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    // to CHANGE WITHOUT NOTICE.  Therefore DO NOT DEPEND ON IT in a user
    // program!
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
    #define GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
    
    #include <limits>
    
    #include "gtest/internal/gtest-port.h"
    
    // Ensures that there is at least one operator<< in the global namespace.
    // See Message& operator<<(...) below for why.
    void operator<<(const testing::internal::Secret&, int);
    
    namespace testing {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //
    // Utilities for testing Google Test itself and code that uses Google Test
    // (e.g. frameworks built on top of Google Test).
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_
    #define GTEST_INCLUDE_GTEST_GTEST_SPI_H_
    
    #include "gtest/gtest.h"
    
    namespace testing {
    
    // This helper class can be used to mock out Google Test failure reporting
    // so that we can test Google Test or code that builds on Google Test.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    //
    // Utilities for testing Google Test itself and code that uses Google Test
    // (e.g. frameworks built on top of Google Test).
    
    #ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_
    #define GTEST_INCLUDE_GTEST_GTEST_SPI_H_
    
    #include "gtest/gtest.h"
    
    namespace testing {
    
    // This helper class can be used to mock out Google Test failure reporting
    // so that we can test Google Test or code that builds on Google Test.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file declares the String class and functions used internally by
    // Google Test.  They are subject to change without notice. They should not used
    // by code external to Google Test.
    //
    // This header file is #included by <gtest/internal/gtest-internal.h>.
    // It should not be #included by other files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

    	}{
    		{"text", &C.text[0], C.ctext()},
    		{"data", &C.data[0], C.cdata()},
    	}
    	for _, test := range tests {
    		if test.a != test.b {
    			t.Errorf("%s: pointer mismatch: %v != %v", test.s, test.a, test.b)
    		}
    		if got := C.GoString(test.a); got != test.s {
    			t.Errorf("%s: points at %#v, want %#v", test.s, got, test.s)
    		}
    	}
    }
    
    // issues 8368 and 8441
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/ant/taskWithNestedElements/groovy/src/test.xml

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