Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for oo (0.03 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-SCT

    000000c0  8a e4 10 25 8f 12 f4 6f  39 0f d2 9e 18 f0 00 76  |...%...o9......v|
    000000d0  00 68 f6 98 f8 1f 64 82  be 3a 8c ee b9 28 1d 4c  |.h....d..:...(.L|
    000000e0  fc 71 51 5d 67 93 d4 44  d1 0a 67 ac bb 4f 4f fb  |.qQ]g..D..g..OO.|
    000000f0  c4 00 00 01 47 97 e1 b5  70 00 00 04 03 00 47 30  |....G...p.....G0|
    00000100  45 02 20 32 21 14 38 06  d8 72 2e 00 30 64 1a e2  |E. 2!.8..r..0d..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/fmt/scan.go

    	}
    	s.accept("0")
    	// Special cases for 0, 0b, 0o, 0x.
    	switch {
    	case s.peek("bB"):
    		s.consume("bB", true)
    		return 0, binaryDigits + "_", true
    	case s.peek("oO"):
    		s.consume("oO", true)
    		return 0, octalDigits + "_", true
    	case s.peek("xX"):
    		s.consume("xX", true)
    		return 0, hexadecimalDigits + "_", true
    	default:
    		return 0, octalDigits + "_", true
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K 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. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        limiter.setRate(Double.POSITIVE_INFINITY);
        limiter.acquire();
        limiter.acquire();
        limiter.acquire();
        assertEvents("R0.50", "R0.00", "R0.00"); // we repay the last request (.5sec), then back to +oo
      }
    
      /** https://code.google.com/p/guava-libraries/issues/detail?id=1791 */
      public void testInfinity_BustyTimeElapsed() {
        RateLimiter limiter = RateLimiter.create(Double.POSITIVE_INFINITY, stopwatch);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        limiter.setRate(Double.POSITIVE_INFINITY);
        limiter.acquire();
        limiter.acquire();
        limiter.acquire();
        assertEvents("R0.50", "R0.00", "R0.00"); // we repay the last request (.5sec), then back to +oo
      }
    
      /** https://code.google.com/p/guava-libraries/issues/detail?id=1791 */
      public void testInfinity_BustyTimeElapsed() {
        RateLimiter limiter = RateLimiter.create(Double.POSITIVE_INFINITY, stopwatch);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    dth*o,u=n?eo(n,a,e):i+si(r).width*o*(ct?-1:1);return{dir:o,show:function(t,e,i){void 0===e&&(e=0);var n=i?"linear":s;return t-=Math.round(t*tt(e,-1,1)),this.translate(e),r&&this.updateTranslates(),e=r?e:tt(e,0,1),oo(this.getItemIn(),"itemin",{percent:e,duration:t,timing:n,dir:o}),r&&oo(this.getItemIn(!0),"itemout",{percent:1-e,duration:t,timing:n,dir:o}),Ze.start(a,{transform:Br(-u*(ct?-1:1),"px")},t,n).then(h.resolve,et),h.promise},stop:function(){return Ze.stop(a)},cancel:function(){Ze.cancel(...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation_test.go

    	tests := []struct {
    		name string
    		in   string
    		err  string
    	}{
    		{"empty", "", "empty"},
    		{"happy", strings.Repeat("x", 63), ""},
    		{"multi-segment", "foo.bar.com", ""},
    		{"middle dash", "f-oo.bar.com", ""},
    		{"trailing dot", "foo.bar.com.", ""},
    		{"prefix dash", "-foo.bar.com", "invalid"},
    		{"forward slash separated", "foo/bar/com", "invalid"},
    		{"colon separated", "foo:bar:com", "invalid"},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top