Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 261 for testSam (0.24 sec)

  1. fess-crawler/src/test/resources/extractor/ooo/test_as.ods

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    		},
    	}
    	for testName, testCase := range testCases {
    		if result, out := LessThanOrEqual(testCase.a, testCase.b); result != testCase.expected && !reflect.DeepEqual(out, testCase.out) {
    			t.Errorf("%s expected: %v/%v, actual: %v/%v", testName, testCase.expected, testCase.out, result, out)
    		}
    	}
    }
    
    func TestMax(t *testing.T) {
    	testCases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  3. test/typeparam/sliceimp.dir/main.go

    	}
    	want := []int{4, 5, 3}
    	if !a.Equal(s1, want) {
    		panic(fmt.Sprintf("after a.Copy got %v, want %v", s1, want))
    	}
    }
    func main() {
    	TestEqual()
    	TestEqualFn()
    	TestMap()
    	TestReduce()
    	TestFilter()
    	TestMax()
    	TestMin()
    	TestAppend()
    	TestCopy()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  4. test/typeparam/slices.go

    	}
    	want := []int{4, 5, 3}
    	if !_Equal(s1, want) {
    		panic(fmt.Sprintf("after _Copy got %v, want %v", s1, want))
    	}
    }
    func main() {
    	TestEqual()
    	TestEqualFn()
    	TestMap()
    	TestReduce()
    	TestFilter()
    	TestMax()
    	TestMin()
    	TestAppend()
    	TestCopy()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/impl/FieldDescImplTest.java

            assertThat(hoge.getStaticFieldValue(), is((Object) "hoge"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testAaa() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final FieldDesc aaa = beanDesc.getFieldDesc("aaa");
            assertThat(aaa.getBeanDesc(), is(sameInstance(beanDesc)));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/env/var_test.go

    	}
    }
    
    func TestDesc(t *testing.T) {
    	reset()
    
    	_ = RegisterDurationVar(testVar+"5", 123*time.Second, "A duration")
    	_ = RegisterStringVar(testVar+"1", "123", "A string")
    	_ = RegisterIntVar(testVar+"2", 456, "An int")
    	_ = RegisterBoolVar(testVar+"3", true, "A bool")
    	_ = RegisterFloatVar(testVar+"4", 789.0, "A float")
    
    	vars := VarDescriptions()
    	if vars[0].Name != "TESTXYZ1" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top