Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 0x99999999 (0.23 sec)

  1. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

        assertEquals(0x9999999999999999L, HashCode.fromLong(0x9999999999999999L).padToLong());
        assertEquals(0x0000000011111111L, HashCode.fromInt(0x11111111).padToLong());
        assertEquals(0x0000000099999999L, HashCode.fromInt(0x99999999).padToLong());
      }
    
      public void testPadToLongWith4Bytes() {
        assertEquals(0x0000000099999999L, HashCode.fromBytesNoCopy(byteArrayWith9s(4)).padToLong());
      }
    
      public void testPadToLongWith6Bytes() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/text/tabwriter/tabwriter_test.go

    	},
    
    	{
    		"13c",
    		8, 8, 1, '\t', FilterHTML,
    		"4444\t333\t22\t1\t333\n" +
    			"999999999\t22\n" +
    			"7\t22\n" +
    			"\t\t\t88888888\n" +
    			"\n" +
    			"666666\t666666\t666666\t4444\n" +
    			"1\t1\t<font color=red attr=日本語>999999999</font>\t0000000000\n",
    
    		"4444\t\t333\t22\t1\t333\n" +
    			"999999999\t22\n" +
    			"7\t\t22\n" +
    			"\t\t\t\t88888888\n" +
    			"\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		//
    		// For 32bit mode rules are more permissive.
    		// If offset fits uint32, it's permitted.
    		// This is allowed for assembly that wants to use 32-bit hex
    		// constants, e.g. LEAL 0x99999999(AX), AX.
    		overflowOK := (ctxt.Arch.Family == sys.AMD64 && p.As == ALEAL) ||
    			(ctxt.Arch.Family != sys.AMD64 &&
    				int64(uint32(a.Offset)) == a.Offset &&
    				ab.rexflag&Rxw == 0)
    		if !overflowOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        assertNull(Punycode.decode("xn--cat-ñ3h"))
      }
    
      @Test fun unterminatedCodePoint() {
        assertNull(Punycode.decode("xn--cat-n"))
      }
    
      @Test fun overflowI() {
        assertNull(Punycode.decode("xn--99999999"))
      }
    
      @Test fun overflowMaxCodePoint() {
        assertNull(Punycode.decode("xn--a-b.net"))
        assertNull(Punycode.decode("xn--a-9b.net"))
        assertEquals("a՚.net", Punycode.decode("xn--a-99b.net"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

                } else if (token.isEmpty()) {
                    ranges.add(new RangeValue("", false));
                }
            }
            if (ranges.size() < 2) {
                ranges.add(new RangeValue("99999999", false));
            }
            return ranges;
        }
    
        private static class RangeValue {
            private String value;
    
            private boolean closed;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

                } else if (token.isEmpty()) {
                    ranges.add(new RangeValue("", false));
                }
            }
            if (ranges.size() < 2) {
                ranges.add(new RangeValue("99999999", false));
            }
            return ranges;
        }
    
        private static class RangeValue {
            private String value;
    
            private boolean closed;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys_test.go

    -- overlayfiles/subdir7_asubsubdir_file.txt --
    -- overlayfiles/subdir7_zsubsubdir_file.txt --
    -- overlayfiles/parentoverwritten_subdir1 --
    x
    -- overlayfiles/subdir9_this_file_is_overlaid.txt --
    99999999
    -- overlayfiles/subdir11 --
    -- overlayfiles/this_is_a_directory/file.txt --
    -- overlayfiles/textfile_txt_file.go --
    x
    `
    
    func TestReadDir(t *testing.T) {
    	initOverlay(t, readDirOverlay)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  8. pkg/log/config_test.go

    		{"99", time.Date(1989, time.February, 1, 1, 1, 1, 99000, time.UTC), "99"},
    		{"999", time.Date(2017, time.January, 1, 1, 1, 1, 999000, time.UTC), "999"},
    		{"9999", time.Date(2083, time.March, 1, 1, 1, 1, 9999000, time.UTC), "9999"},
    		{"99999", time.Date(2083, time.March, 1, 1, 1, 1, 99999000, time.UTC), "99999"},
    		{"999999", time.Date(2083, time.March, 1, 1, 1, 1, 999999000, time.UTC), "999999"},
    	}
    
    	for _, v := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/time/time.go

    	//
    	// From high to low bit position, wall encodes a 1-bit flag (hasMonotonic),
    	// a 33-bit seconds field, and a 30-bit wall time nanoseconds field.
    	// The nanoseconds field is in the range [0, 999999999].
    	// If the hasMonotonic bit is 0, then the 33-bit field must be zero
    	// and the full signed 64-bit wall seconds since Jan 1 year 1 is stored in ext.
    	// If the hasMonotonic bit is 1, then the 33-bit field holds a 33-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. pkg/config/validation/agent/validation_test.go

    		{
    			duration: &durationpb.Duration{Seconds: 1},
    			isValid:  true,
    		},
    		{
    			duration: &durationpb.Duration{Seconds: 31},
    			isValid:  true,
    		},
    		{
    			duration: &durationpb.Duration{Seconds: 999999999},
    			isValid:  false,
    		},
    	}
    
    	for _, check := range checks {
    		if got := ValidateConnectTimeout(check.duration); (got == nil) != check.isValid {
    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