Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for init_test (0.24 sec)

  1. src/cmd/go/init_test.go

    Bryan C. Mills <******@****.***> 1668524891 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:26 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/test/cmd/init_test.go

    func TestCmdInitFeatureGates(t *testing.T) {
    	const PanicExitcode = 2
    
    	initTest := []struct {
    		name string
    		args string
    	}{
    		{
    			name: "no feature gates passed",
    			args: "",
    		},
    		{
    			name: "feature gate PublicKeysECDSA=true",
    			args: "--feature-gates=PublicKeysECDSA=true",
    		},
    	}
    
    	for _, rt := range initTest {
    		t.Run(rt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/init_test.go

    Lubomir I. Ivanov <******@****.***> 1704462942 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. pkg/controller/daemon/init_test.go

    ZhangKe10140699 <******@****.***> 1667551052 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:50:27 UTC 2023
    - 632 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

    #include "gradle_cunit_register.h"
    
    int init_test(void) {
        return 0;
    }
    
    int clean_test(void) {
        return 0;
    }
    
    void test_sum(void) {
      CU_ASSERT(sum(0, 2) == 2);
    #ifndef ONE_TEST
      CU_ASSERT(sum(0, -2) == -2);
      CU_ASSERT(sum(2, 2) == 4);
    #endif
    }
    
    void gradle_cunit_register() {
        CU_pSuite pSuiteMath = CU_add_suite("hello test", init_test, clean_test);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/groovy/src/test/java/example/UnitTest.java

     * limitations under the License.
     */
    
    package example;
    
    import org.junit.jupiter.api.Assertions;
    import org.junit.jupiter.api.Test;
    
    public class UnitTest {
        @Test
        public void unitTest() {
            Assertions.assertTrue(true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 820 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/kotlin/src/test/java/example/UnitTest.java

     * limitations under the License.
     */
    
    package example;
    
    import org.junit.jupiter.api.Assertions;
    import org.junit.jupiter.api.Test;
    
    public class UnitTest {
        @Test
        public void unitTest() {
            Assertions.assertTrue(true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 820 bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/UnitsTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.performance.measure
    
    import spock.lang.Specification
    
    class UnitsTest extends Specification {
        def "can compare units of same quantity"() {
            def base = Units.base(Void.class, "base")
            def units1 = base.times(12, "units1")
            def units2 = base.times(33, "units2")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

     public:
      virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {}
      virtual void OnTestIterationStart(const UnitTest& /*unit_test*/,
                                        int /*iteration*/) {}
      virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {}
      virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {}
      virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/IntsTest.java

     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings("cast") // redundant casts are intentional and harmless
    public class IntsTest extends TestCase {
      private static final int[] EMPTY = {};
      private static final int[] ARRAY1 = {(int) 1};
      private static final int[] ARRAY234 = {(int) 2, (int) 3, (int) 4};
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top