Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for oo (0.02 sec)

  1. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private enum Timeout {
        MIN(Long.MIN_VALUE, "-oo"),
        MINUS_SMALL(-SMALL_TIMEOUT_MILLIS, "-" + SMALL_TIMEOUT_MILLIS + "ms"),
        ZERO(0L, "0ms"),
        SMALL(SMALL_TIMEOUT_MILLIS, SMALL_TIMEOUT_MILLIS + "ms"),
        LARGE(UNEXPECTED_HANG_DELAY_MILLIS * 2, (2 * UNEXPECTED_HANG_DELAY_MILLIS) + "ms"),
        MAX(Long.MAX_VALUE, "+oo");
    
        final long millis;
        final String label;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private enum Timeout {
        MIN(Long.MIN_VALUE, "-oo"),
        MINUS_SMALL(-SMALL_TIMEOUT_MILLIS, "-" + SMALL_TIMEOUT_MILLIS + "ms"),
        ZERO(0L, "0ms"),
        SMALL(SMALL_TIMEOUT_MILLIS, SMALL_TIMEOUT_MILLIS + "ms"),
        LARGE(UNEXPECTED_HANG_DELAY_MILLIS * 2, (2 * UNEXPECTED_HANG_DELAY_MILLIS) + "ms"),
        MAX(Long.MAX_VALUE, "+oo");
    
        final long millis;
        final String label;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. cmd/storage-rest_test.go

    		volumeName     string
    		objectName     string
    		offset         int64
    		expectedResult []byte
    		expectErr      bool
    	}{
    		{"foo", "myobject", 0, []byte("foo"), false},
    		{"foo", "myobject", 1, []byte("oo"), false},
    		// file not found error.
    		{"foo", "yourobject", 0, nil, true},
    	}
    
    	result := make([]byte, 100)
    	for i, testCase := range testCases {
    		result = result[testCase.offset:3]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client_test.go

    	fake := kube.NewFakeClient()
    	fake.RunAndWait(test.NewStop(t))
    	vs := apiistioioapinetworkingv1beta1.VirtualService{
    		TypeMeta:   metav1.TypeMeta{},
    		ObjectMeta: metav1.ObjectMeta{Name: "oo"},
    		Spec:       v1beta1.VirtualService{Hosts: []string{"hello"}},
    		Status:     v1alpha1.IstioStatus{},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    	{"foo.com", "om"},
    	{"foo.com", "com"},
    	{"foo.com", ".com"},
    	{"foo.com", "o.com"},
    	{"foo.com", "oo.com"},
    	{"foo.com", "foo.com"},
    	{"foo.com", ".foo.com"},
    	{"foo.com", "x.foo.com"},
    	{"foo.com", "xfoo.com"},
    	{"foo.com", "xfoo.org"},
    	{"foo.com", "foo.org"},
    	{"foo.com", "oo.org"},
    	{"foo.com", "o.org"},
    	{"foo.com", ".org"},
    	{"foo.com", "org"},
    	{"foo.com", "rg"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/stmt0.go

    	case 2, 3.0, 4.1:
    	case 5.2, 1.10 /* ERROR "duplicate case" */ :
    	}
    
    	var s string
    	switch s {
    	case "foo":
    	case "foo" /* ERROR "duplicate case" */ :
    	case "f" /* ERROR "duplicate case" */ + "oo":
    	case "abc", "def", "ghi":
    	case "jkl", "foo" /* ERROR "duplicate case" */ :
    	}
    
    	type T int
    	type F float64
    	type S string
    	type B bool
    	var i interface{}
    	switch i {
    	case nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top