Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 204 for testname1 (0.16 sec)

  1. pkg/kubelet/images/image_manager_test.go

    			}
    		})
    	}
    }
    
    func TestApplyDefaultImageTag(t *testing.T) {
    	for _, testCase := range []struct {
    		testName string
    		Input    string
    		Output   string
    	}{
    		{testName: "root", Input: "root", Output: "root:latest"},
    		{testName: "root:tag", Input: "root:tag", Output: "root:tag"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

            classes.add(cls);
          }
        }
        return classes;
      }
    
      private static boolean hasTest(Class<?> testClass, Iterable<String> testNames) {
        for (String testName : testNames) {
          try {
            testClass.getMethod(testName);
            return true;
          } catch (NoSuchMethodException e) {
            continue;
          }
        }
        return false;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. pkg/config/protocol/instance_test.go

    		{"", protocol.Unsupported},
    		{"SMTP", protocol.Unsupported},
    		{"HBONE", protocol.Unsupported},
    	}
    
    	for _, testPair := range testPairs {
    		testName := testPair.name
    		if testName == "" {
    			testName = "[empty]"
    		}
    		t.Run(testName, func(t *testing.T) {
    			out := protocol.Parse(testPair.name)
    			if out != testPair.out {
    				t.Fatalf("Parse(%q) => %q, want %q", testPair.name, out, testPair.out)
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. testing/performance/docs/check-rev.sh

    # git bisect run check_rev.sh JavaConfigurationPerformanceTest lotDependencies
    TESTNAME=${1:-IdeIntegrationPerformanceTest}
    TESTPROJECT=${2:-multi}
    ./gradlew clean
    [ -d ~/.gradle-bisect-override ] && cp -Rdvp ~/.gradle-bisect-override/* .
    [ -x ~/.gradle-bisect-override-script ] && ~/.gradle-bisect-override-script $TESTNAME $TESTPROJECT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    # define TYPED_TEST(CaseName, TestName) \
      template <typename gtest_TypeParam_> \
      class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \
          : public CaseName<gtest_TypeParam_> { \
       private: \
        typedef CaseName<gtest_TypeParam_> TestFixture; \
        typedef gtest_TypeParam_ TypeParam; \
        virtual void TestBody(); \
      }; \
      bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    # define TYPED_TEST(CaseName, TestName) \
      template <typename gtest_TypeParam_> \
      class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \
          : public CaseName<gtest_TypeParam_> { \
       private: \
        typedef CaseName<gtest_TypeParam_> TestFixture; \
        typedef gtest_TypeParam_ TypeParam; \
        virtual void TestBody(); \
      }; \
      bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. pkg/config/resource/name_test.go

    			description: "multiple segments", // Only the first segment is treated specially
    			name:        "testName//someotherStuff",
    			want:        "testName//someotherStuff",
    			err:         "",
    			valid:       true,
    		},
    		{
    			description: "valid name with namespace",
    			name:        "testNamespace/testName",
    			want:        "testNamespace/testName",
    			valid:       true,
    		},
    	}
    	for _, s := range steps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/reconciler_helpers_test.go

    )
    
    func TestRecycleSlices(t *testing.T) {
    	testCases := []struct {
    		testName       string
    		startingSlices *slicesByAction
    		expectedSlices *slicesByAction
    	}{{
    		testName:       "Empty slices",
    		startingSlices: &slicesByAction{},
    		expectedSlices: &slicesByAction{},
    	}, {
    		testName: "1 to create and 1 to delete",
    		startingSlices: &slicesByAction{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 23:58:47 UTC 2021
    - 7K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    				t.Skipf("Skipping intentional failure on existing data when running as root.")
    			}
    		}
    		t.Run(tc.testName, func(t *testing.T) {
    			if tc.skipOnWindows && goruntime.GOOS == "windows" {
    				t.Skipf("Skipping test case on Windows: %s", tc.testName)
    			}
    			t.Logf("Running test case: %s", tc.testName)
    
    			// Setup
    			// Create a new attacher
    			fakeClient := fakeclient.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyArtifactTest.java

        @Test
        public void testInit() {
            String testName = "name";
            String testType = "type";
            String testExtension = "ext";
            String testClassifier = "classifier";
            String testUrl = "url";
            DependencyArtifact artifact = new DefaultDependencyArtifact(testName, testType, testExtension, testClassifier, testUrl);
            assertEquals(testName, artifact.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 1.5K bytes
    - Viewed (0)
Back to top