Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 342 for B1000000 (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    	switch b {
    	case 0:
    		return 1
    	case 1:
    		return 10
    	case 2:
    		return 100
    	case 3:
    		return 1000
    	case 4:
    		return 10000
    	case 5:
    		return 100000
    	case 6:
    		return 1000000
    	case 7:
    		return 10000000
    	case 8:
    		return 100000000
    	case 9:
    		return 1000000000
    	case 10:
    		return 10000000000
    	case 11:
    		return 100000000000
    	case 12:
    		return 1000000000000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/res/drawable/ic_launcher_background.xml

        <path
            android:fillColor="#00000000"
            android:pathData="M9,0L9,108"
            android:strokeWidth="0.8"
            android:strokeColor="#33FFFFFF" />
        <path
            android:fillColor="#00000000"
            android:pathData="M19,0L19,108"
            android:strokeWidth="0.8"
            android:strokeColor="#33FFFFFF" />
        <path
            android:fillColor="#00000000"
            android:pathData="M29,0L29,108"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

              when {
                b == 0x80 -> {
                  // 10000000
                  throw IOException("index == 0")
                }
                b and 0x80 == 0x80 -> {
                  // 1NNNNNNN
                  val index = readInt(b, PREFIX_7_BITS)
                  readIndexedHeader(index - 1)
                }
                b == 0x40 -> {
                  // 01000000
                  readLiteralHeaderWithIncrementalIndexingNewName()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue13559.go

    	_ int64 = 1e-100000  // ERROR "1e\-100000 truncated|.* truncated to int64|truncated"
    	_ int64 = 1e-1000000 // ERROR "1e\-1000000 truncated|.* truncated to int64|truncated"
    )
    
    const (
    	_ int64 = -1e10000000 // ERROR "integer too large|truncated to int64|truncated"
    	_ int64 = -1e1000000  // ERROR "integer too large|truncated to int64|truncated"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  5. src/math/big/ratconv_test.go

    	var x Rat
    	for _, test := range []struct {
    		input string
    		want  bool
    	}{
    		{"1e-1000001", false},
    		{"1e-1000000", true},
    		{"1e+1000000", true},
    		{"1e+1000001", false},
    
    		{"0p1000000000000", true},
    		{"1p-10000001", false},
    		{"1p-10000000", true},
    		{"1p+10000000", true},
    		{"1p+10000001", false},
    		{"1.770p02041010010011001001", false}, // test case from issue
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/allocator_test.go

    limitations under the License.
    */
    
    package runtime
    
    import (
    	"math/rand"
    	"testing"
    )
    
    func TestAllocatorRandomInputs(t *testing.T) {
    	maxBytes := 5 * 1000000 // 5 MB
    	iterations := rand.Intn(10000) + 10
    	target := &Allocator{}
    
    	for i := 0; i < iterations; i++ {
    		bytesToAllocate := rand.Intn(maxBytes)
    		buff := target.Allocate(uint64(bytesToAllocate))
    		if cap(buff) < bytesToAllocate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:29 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/res/drawable-v24/ic_launcher_foreground.xml

                    android:startY="61.0927"
                    android:type="linear">
                    <item
                        android:color="#44000000"
                        android:offset="0.0" />
                    <item
                        android:color="#00000000"
                        android:offset="1.0" />
                </gradient>
            </aapt:attr>
        </path>
        <path
            android:fillColor="#FFFFFF"
            android:fillType="nonZero"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/res/drawable/ic_launcher_background.xml

        <path
            android:fillColor="#00000000"
            android:pathData="M9,0L9,108"
            android:strokeColor="#33FFFFFF"
            android:strokeWidth="0.8" />
        <path
            android:fillColor="#00000000"
            android:pathData="M19,0L19,108"
            android:strokeColor="#33FFFFFF"
            android:strokeWidth="0.8" />
        <path
            android:fillColor="#00000000"
            android:pathData="M29,0L29,108"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue16733.go

    // license that can be found in the LICENSE file.
    
    // Issue 16733: don't fold constant factors into a multiply
    // beyond the capacity of a MULQ instruction (32 bits).
    
    package p
    
    func f(n int64) int64 {
    	n *= 1000000
    	n *= 1000000
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 16:46:48 UTC 2016
    - 364 bytes
    - Viewed (0)
  10. src/runtime/pprof/proto_test.go

    ->
    00400000 0040b000 00000000 /bin/cat
    7f7d7797c000 7f7d77b36000 00000000 /lib/x86_64-linux-gnu/libc-2.19.so
    7f7d77d41000 7f7d77d64000 00000000 /lib/x86_64-linux-gnu/ld-2.19.so
    7ffc34343000 7ffc34345000 00000000 [vdso]
    ffffffffff600000 ffffffffff601000 00000090 [vsyscall]
    
    00400000-0040b000 r-xp 00000000 fc:01 787766                             /bin/cat with space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top