Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 115 for init_test (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    `src/test/headers`::
    Headers - headers needed to compile the unit test
    
    You <<building_cpp_projects.adoc#sec:custom_cpp_source_set_paths,configure the project layout>> by configuring the `source` and `privateHeaders` respectively on the `unitTest` script block.
    
    [[sec:cpp_unit_test_compile_task]]
    === `compileTest__Variant__Cpp` Task
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. pkg/kubelet/status/status_manager_test.go

    		{Name: "init-test-1"},
    		{Name: "init-test-2", State: v1.ContainerState{Terminated: &v1.ContainerStateTerminated{Reason: "InitTest", ExitCode: 0}}},
    		{Name: "init-test-3", State: v1.ContainerState{Terminated: &v1.ContainerStateTerminated{Reason: "InitTest", ExitCode: 3}}},
    		// TODO: If the last init container had failed, the pod would not have been
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                    }
                }
            """
    
            file('src/test/java/example/UnitTest.java') << '''
                package example;
    
                import org.junit.Assert;
                import org.junit.Test;
    
                public class UnitTest {
                    @Test
                    public void unitTest() {
                        Assert.assertTrue(true);
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

            configureTestDataElementsVariants((ProjectInternal) project);
        }
    
        private String getDefaultTestType(JvmTestSuite testSuite) {
            return DEFAULT_TEST_SUITE_NAME.equals(testSuite.getName()) ? TestSuiteType.UNIT_TEST : TextUtil.camelToKebabCase(testSuite.getName());
        }
    
        private void configureTestDataElementsVariants(ProjectInternal project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 21:08:13 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/JvmTestSuite.java

        @Override
        ExtensiblePolymorphicDomainObjectContainer<? extends JvmTestSuiteTarget> getTargets();
    
        /**
         * Get the test type for this test suite.
         *
         * Defaults to the value of the {@code UNIT_TEST} constant defined in {@link TestSuiteType} for the built-in test suite, and to the dash-case name of the
         * test suite for custom test suites.  Test suite types must be unique across all test suites within a project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/BUILD

            ":libtf",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    tf_cc_test(
        name = "libtf_visit_test",
        size = "medium",
        srcs = ["tests/visit_test.cc"],
        deps = [
            ":libtf",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "runtime_test",
        testonly = 1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        return 0;  // Return value used only to run this method in namespace scope.
      }
      // UnitTest class invokes this method to register tests in this test case
      // test cases right before running tests in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
      // instance of a ParameterizedTestCaseInfoBase derived class.
      // UnitTest has a guard to prevent from calling this method more then once.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in
    // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
    GTEST_API_ std::string GetCurrentOsStackTraceExceptTop(
        UnitTest* unit_test, int skip_count);
    
    // Helpers for suppressing warnings on unreachable code or constant
    // condition.
    
    // Always returns true.
    GTEST_API_ bool AlwaysTrue();
    
    // Always returns false.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        return 0;  // Return value used only to run this method in namespace scope.
      }
      // UnitTest class invokes this method to register tests in this test case
      // test cases right before running tests in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
      // instance of a ParameterizedTestCaseInfoBase derived class.
      // UnitTest has a guard to prevent from calling this method more then once.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. internal/store/queuestore_test.go

    	"reflect"
    	"strings"
    	"testing"
    )
    
    type TestItem struct {
    	Name     string `json:"Name"`
    	Property string `json:"property"`
    }
    
    var (
    	// TestDir
    	queueDir = filepath.Join(os.TempDir(), "minio_test")
    	// Sample test item.
    	testItem = TestItem{Name: "test-item", Property: "property"}
    	// Ext for test item
    	testItemExt = ".test"
    )
    
    // Initialize the queue store.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 17:52:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top