Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 204 for testname1 (0.34 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
      test_case_name##_##test_name##_Test
    
    // Helper macro for defining tests.
    #define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\
    class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
     public:\
      GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
     private:\
      virtual void TestBody();\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                ) {
                    List<PerformanceExperiment> testNames = new ArrayList<>();
                    while (testExecutions.next()) {
                        String testClass = testExecutions.getString(1);
                        String testId = testExecutions.getString(2);
                        String testProject = testExecutions.getString(3);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances_test.go

    		{
    			testName: "zone",
    			key:      "zone",
    			option:   option.Zone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "sub zone",
    			key:      "sub_zone",
    			option:   option.SubZone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "node metadata nil",
    			key:      "meta_json_str",
    			option:   option.NodeMetadata(nil, nil),
    			expected: nil,
    		},
    		{
    			testName: "node metadata",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. pkg/kubelet/preemption/preemption_test.go

    		} else if r.expectErr && outErr == nil {
    			t.Errorf("evictPodsToFreeRequests expected an error but returned a successful output=%v during the %s test.", outputPods, r.testName)
    		} else if !podListEqual(r.expectedOutput, outputPods) {
    			t.Errorf("evictPodsToFreeRequests expected %v but got %v during the %s test.", r.expectedOutput, outputPods, r.testName)
    		}
    		podKiller.clear()
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/instancecount_test.go

    func TestMasterCountEndpointReconciler(t *testing.T) {
    	reconcileTests := []struct {
    		testName          string
    		serviceName       string
    		ip                string
    		endpointPorts     []corev1.EndpointPort
    		additionalMasters int
    		initialState      []runtime.Object
    		expectUpdate      []runtime.Object
    		expectCreate      []runtime.Object
    	}{
    		{
    			testName:      "no existing endpoints",
    			serviceName:   "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    	}, nil
    }
    
    func TestSupports(t *testing.T) {
    	tests := []struct {
    		testName       string
    		featureName    string
    		expectedResult bool
    	}{
    		{
    			testName:    "Disabled - with unknown feature",
    			featureName: "some unknown feature",
    		},
    		{
    			testName:    "Disabled - with empty feature",
    			featureName: "",
    		},
    		{
    			testName:       "Disabled - default",
    			featureName:    storage.RequestWatchProgress,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    				corev1.ResourcePods:   resource.MustParse("1"),
    			},
    			expected: false,
    		},
    	}
    	for testName, testCase := range testCases {
    		if result := Equals(testCase.a, testCase.b); result != testCase.expected {
    			t.Errorf("%s expected: %v, actual: %v, a=%v, b=%v", testName, testCase.expected, result, testCase.a, testCase.b)
    		}
    	}
    }
    
    func TestLessThanOrEqual(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  8. pkg/controlplane/reconcilers/lease_test.go

    	}
    	t.Cleanup(dFunc)
    
    	reconcileTests := []struct {
    		testName      string
    		serviceName   string
    		ip            string
    		endpointPorts []corev1.EndpointPort
    		endpointKeys  []string
    		initialState  []runtime.Object
    		expectUpdate  []runtime.Object
    		expectCreate  []runtime.Object
    		expectLeases  []string
    	}{
    		{
    			testName:      "no existing endpoints",
    			serviceName:   "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/kubernetesservice/controller_test.go

    			}
    		})
    	}
    
    	reconcileTests := []struct {
    		testName     string
    		serviceName  string
    		servicePorts []corev1.ServicePort
    		serviceType  corev1.ServiceType
    		service      *corev1.Service
    		expectUpdate *corev1.Service // nil means none expected
    	}{
    		{
    			testName:    "service definition wrong port",
    			serviceName: "foo",
    			servicePorts: []corev1.ServicePort{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. plugin/pkg/admission/podnodeselector/admission_test.go

    		if test.admit && err != nil {
    			t.Errorf("Test: %s, expected no error but got: %s", test.testName, err)
    		} else if !test.admit && err == nil {
    			t.Errorf("Test: %s, expected an error", test.testName)
    		}
    		if test.admit && !labels.Equals(test.mergedNodeSelector, labels.Set(pod.Spec.NodeSelector)) {
    			t.Errorf("Test: %s, expected: %s but got: %s", test.testName, test.mergedNodeSelector, pod.Spec.NodeSelector)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top