Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for googleTest (0.12 sec)

  1. testing/performance/src/templates/native-dependents/settings.gradle

    rootProject.name = '${rootProjectName}'
    <%
    subprojects.each { subproject ->
        out.println "include '$subproject'"
    }
    %>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 143 bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents/build.gradle

        }
        out.println """    
                }
            }"""
    }
    %>
        }
    
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
                lib project: ":googleTest", library: "googleTest", linkage: "static"
                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
                }
            }
            all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/googletest/internal/DefaultGoogleTestTestSuiteSpec.java

     * limitations under the License.
     */
    package org.gradle.nativeplatform.test.googletest.internal;
    
    import org.gradle.nativeplatform.NativeComponentSpec;
    import org.gradle.nativeplatform.internal.AbstractNativeComponentSpec;
    import org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteSpec;
    import org.gradle.platform.base.ComponentSpec;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/experimental/tests/saved_model_api_test.cc

                                      kTestData, saved_model_dir);
    }
    
    // This value parameterized test allows us to test both TFRT
    // and non TFRT runtimes.
    // https://github.com/google/googletest/blob/dcc92d0ab6c4ce022162a23566d44f673251eee4/googletest/docs/advanced.md#value-parameterized-tests
    class CPPSavedModelAPITest : public ::testing::TestWithParam<bool> {};
    
    TEST_P(CPPSavedModelAPITest, LoadsSavedModelWithTags) {
      Status status;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 14 23:59:14 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/README.md

    ## GoogleTest Sample Limitations
    
    Currently, the Gradle model for Platform does not allow us to differentiate between different c-runtime, ABI or other binary variants.
    This means that it is not possible to differentiate between a prebuilt library binary compatible with VS2010 vs VS2013.
    
    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 492 bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/googletest/package-info.java

     * limitations under the License.
     */
    
    /**
     * API classes for Google Test integration.
     */
    @org.gradle.api.Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 747 bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/base/tests/tensor_types_test_util.h

    // of its corresponding C++ type. These types allow us to write Dtype-agnostic
    // tests via GoogleTest's TypedTests:
    // https://github.com/google/googletest/blob/e589a337170554c48bc658cc857cf15080c9eacc/googletest/docs/advanced.md#typed-tests
    struct FloatType {
      using type = float;
      static constexpr TF_DataType kDType = TF_FLOAT;
    };
    
    struct DoubleType {
      using type = double;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/resources/META-INF/gradle-plugins/org.gradle.google-test.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
    - 699 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    
    NOTE: The GoogleTest sources provided by your project require the core GoogleTest headers and libraries.
    Presently, this library dependency must be provided by your project for each link:{groovyDslPath}/org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteBinarySpec.html[GoogleTestTestSuiteBinarySpec].
    
    [[sec:running_googletest_tests]]
    === Running GoogleTest tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/plugins/GoogleTestPluginIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.googletest.plugins
    
    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    class GoogleTestPluginIntegrationTest extends WellBehavedPluginTest {
        @Override
        String getPluginName() {
            return "google-test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 887 bytes
    - Viewed (0)
Back to top