Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for 97 (0.15 sec)

  1. guava-tests/test/com/google/common/base/Utf8Test.java

        long[] expected = new long[128];
        // 0-63 are all 5300224
        for (int i = 0; i <= 63; i++) {
          expected[i] = 5300224;
        }
        // 97-111 are all 2342912
        for (int i = 97; i <= 111; i++) {
          expected[i] = 2342912;
        }
        // 113-117 are all 1048576
        for (int i = 113; i <= 117; i++) {
          expected[i] = 1048576;
        }
        // One offs
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/Utf8Test.java

        long[] expected = new long[128];
        // 0-63 are all 5300224
        for (int i = 0; i <= 63; i++) {
          expected[i] = 5300224;
        }
        // 97-111 are all 2342912
        for (int i = 97; i <= 111; i++) {
          expected[i] = 2342912;
        }
        // 113-117 are all 1048576
        for (int i = 113; i <= 117; i++) {
          expected[i] = 1048576;
        }
        // One offs
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  3. cmd/erasure-sets_test.go

    		// passing in valid object name.
    		{"object", 28},
    		{"The Shining Script <v1>.pdf", 142},
    		{"Cost Benefit Analysis (2009-2010).pptx", 133},
    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", 185},
    		{"SHØRT", 97},
    		{"There are far too many object names, and far too few bucket names!", 101},
    		{"a/b/c/", 193},
    		{"/a/b/c", 116},
    		{string([]byte{0xff, 0xfe, 0xfd}), 61},
    	}
    
    	// Tests hashing order to be consistent.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 12 07:21:56 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  4. cmd/apierrorcode_string.go

    	_ = x[ErrMalformedDate-92]
    	_ = x[ErrMalformedPresignedDate-93]
    	_ = x[ErrMalformedCredentialDate-94]
    	_ = x[ErrMalformedExpires-95]
    	_ = x[ErrNegativeExpires-96]
    	_ = x[ErrAuthHeaderEmpty-97]
    	_ = x[ErrExpiredPresignRequest-98]
    	_ = x[ErrRequestNotReadyYet-99]
    	_ = x[ErrUnsignedHeaders-100]
    	_ = x[ErrMissingDateHeader-101]
    	_ = x[ErrInvalidQuerySignatureAlgo-102]
    	_ = x[ErrInvalidQueryParams-103]
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  5. src/bytes/example_test.go

    	var b bytes.Buffer
    	b.Grow(64)
    	b.Write([]byte("abcde"))
    	c, err := b.ReadByte()
    	if err != nil {
    		panic(err)
    	}
    	fmt.Println(c)
    	fmt.Println(b.String())
    	// Output:
    	// 97
    	// bcde
    }
    
    func ExampleClone() {
    	b := []byte("abc")
    	clone := bytes.Clone(b)
    	fmt.Printf("%s\n", clone)
    	clone[0] = 'd'
    	fmt.Printf("%s\n", b)
    	fmt.Printf("%s\n", clone)
    	// Output:
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  6. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "mediumJavaMultiProject",
        "linux" : 110
      }, {
        "testProject" : "mediumMonolithicJavaProject",
        "linux" : 97
      } ]
    }, {
      "scenario" : "org.gradle.performance.experiment.maven.JavaTestGradleVsMavenPerformanceTest.clean test (Gradle vs Maven)",
      "durations" : [ {
        "testProject" : "mediumJavaMultiProject",
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  7. cmd/metrics-v2.go

    			closer.Close()
    		}
    	})
    }
    
    func toSnake(camel string) (snake string) {
    	var b strings.Builder
    	l := len(camel)
    	for i, v := range camel {
    		// A is 65, a is 97
    		if v >= 'a' {
    			b.WriteRune(v)
    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    		// add underscore if last letter is capital letter
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/minio-dashboard.json

              "unit": "none"
            },
            "overrides": []
          },
          "gridPos": {
            "h": 5,
            "w": 12,
            "x": 12,
            "y": 61
          },
          "id": 97,
          "options": {
            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
    Json
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 93K bytes
    - Viewed (2)
  9. doc/go1.17_spec.html

    <code>float64</code>).
    </li>
    </ul>
    
    <pre>
    x                   T           x is representable by a value of T because
    
    'a'                 byte        97 is in the set of byte values
    97                  rune        rune is an alias for int32, and 97 is in the set of 32-bit integers
    "foo"               string      "foo" is in the set of string values
    1024                int16       1024 is in the set of 16-bit integers
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-service-dashboard.json

              },
              "unit": "ops"
            },
            "overrides": []
          },
          "gridPos": {
            "h": 4,
            "w": 6,
            "x": 0,
            "y": 8
          },
          "id": 97,
          "links": [],
          "maxDataPoints": 100,
          "options": {
            "colorMode": "none",
            "graphMode": "area",
            "justifyMode": "auto",
            "orientation": "horizontal",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 111.8K bytes
    - Viewed (0)
Back to top