Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/googletest/GoogleTestTestSuiteSpec.java

     * 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;
    
    import org.gradle.api.Incubating;
    import org.gradle.nativeplatform.test.NativeTestSuiteSpec;
    
    /**
     * Test suite of Google Test tests.
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 892 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/custom-check/groovy/build.gradle

    // tag::custom-check[]
    plugins {
        id "cpp"
    }
    // You don't need to apply the plugin below if you're already using CUnit or GoogleTest support
    apply plugin: TestingModelBasePlugin
    
    tasks.register('myCustomCheck') {
        doLast {
            println 'Executing my custom check'
        }
    }
    
    model {
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 556 bytes
    - Viewed (0)
Back to top