Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for 01234567 (0.13 sec)

  1. src/time/time_test.go

    }
    
    var gobTests = []Time{
    	Date(0, 1, 2, 3, 4, 5, 6, UTC),
    	Date(7, 8, 9, 10, 11, 12, 13, FixedZone("", 0)),
    	Unix(81985467080890095, 0x76543210), // Time.sec: 0x0123456789ABCDEF
    	{},                                  // nil location
    	Date(1, 2, 3, 4, 5, 6, 7, FixedZone("", 32767*60)),
    	Date(1, 2, 3, 4, 5, 6, 7, FixedZone("", -32768*60)),
    }
    
    func TestTimeGob(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/memcombine_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package test
    
    import (
    	"encoding/binary"
    	"testing"
    )
    
    var gv = [16]byte{0, 1, 2, 3, 4, 5, 6, 7, 8}
    
    //go:noinline
    func readGlobalUnaligned() uint64 {
    	return binary.LittleEndian.Uint64(gv[1:])
    }
    
    func TestUnalignedGlobal(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 30 18:35:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/io/CopyUtilTest.java

    import java.net.URL;
    
    import org.codelibs.core.net.URLUtil;
    import org.junit.Test;
    
    /**
     * @author koichik
     */
    public class CopyUtilTest {
    
        static byte[] srcBytes = new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
    
        static String srcString = "ABCDEFGHIJKLMN";
    
        static String urlString = "あいうえお";
    
        InputStream is = new ByteArrayInputStream(srcBytes);
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/fmt/doc.go

    If width is provided, it applies after leading spaces are
    trimmed and specifies the maximum number of runes to read
    to satisfy the verb. For example,
    
    	Sscanf(" 1234567 ", "%5s%d", &s, &i)
    
    will set s to "12345" and i to 67 while
    
    	Sscanf(" 12 34 567 ", "%5s%d", &s, &i)
    
    will set s to "12" and i to 34.
    
    In all the scanning functions, a carriage return followed
    immediately by a newline is treated as a plain newline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. test/codegen/README

      // amd64:`ADDQ\t\$3`
    
    and they'll match this assembly line:
    
      ADDQ	$3
    
    Negative matches can be specified using a - before the quoted regexp.
    For example:
    
      func MoveSmall() {
      	   x := [...]byte{1, 2, 3, 4, 5, 6, 7}
      	   copy(x[1:], x[:]) // arm64:-".*memmove"
      }
    
    verifies that NO memmove call is present in the assembly generated for
    the copy() line.
    
    
    - Architecture specifiers
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/net/http/internal/chunked_test.go

    // if it can return something.
    func TestChunkReadPartial(t *testing.T) {
    	pr, pw := io.Pipe()
    	go func() {
    		pw.Write([]byte("7\r\n1234567"))
    	}()
    	cr := NewChunkedReader(pr)
    	readBuf := make([]byte, 7)
    	n, err := cr.Read(readBuf)
    	if err != nil {
    		t.Fatal(err)
    	}
    	want := "1234567"
    	if n != 7 || string(readBuf) != want {
    		t.Fatalf("Read: %v %q; want %d, %q", n, readBuf[:n], len(want), want)
    	}
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64error.s

    	ANDW	$0x6006000060060, R27, R5                        // ERROR "cannot use REGTMP as source"
    	STP	(R3, R4), 0x1234567(R27)                         // ERROR "REGTMP used in large offset store"
    	LDP	0x1234567(R27), (R3, R4)                         // ERROR "REGTMP used in large offset load"
    	STP	(R26, R27), 700(R2)                              // ERROR "cannot use REGTMP as source"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  8. src/sort/sort_test.go

    	Sort(IntSlice(data))
    }
    
    func TestReverseRange(t *testing.T) {
    	data := []int{1, 2, 3, 4, 5, 6, 7}
    	ReverseRange(IntSlice(data), 0, len(data))
    	for i := len(data) - 1; i > 0; i-- {
    		if data[i] > data[i-1] {
    			t.Fatalf("reverseRange didn't work")
    		}
    	}
    
    	data1 := []int{1, 2, 3, 4, 5, 6, 7}
    	data2 := []int{1, 2, 5, 4, 3, 6, 7}
    	ReverseRange(IntSlice(data1), 2, 5)
    	for i, v := range data1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. cmd/testdata/xl-many-parts.meta

    "��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��#�#�#�#�#�#�#�#�#�#	�#
    L294:�#�#�#
    �#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�# �#!�#"�##�#$�#%�#&�#'�#(�#)�#*�#+�#,�#-�#.�#/�#0�#1�#2�#3�#4�#5�#6�#7�#8�PartETags��PartSizes�#8�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 02 21:40:38 UTC 2023
    - 808.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/list.go

    			break
    		}
    		n++
    	}
    	bullet := t.peek()
    	var num int
    Switch:
    	switch bullet {
    	default:
    		return false
    	case '-', '*', '+':
    		t.trim(bullet)
    		n++
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		for j := t.i; ; j++ {
    			if j >= len(t.text) {
    				return false
    			}
    			c := t.text[j]
    			if c == '.' || c == ')' {
    				// success
    				bullet = c
    				j++
    				n += j - t.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top