Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for 012345678 (0.19 sec)

  1. src/strings/reader_test.go

    	"io"
    	"strings"
    	"sync"
    	"testing"
    )
    
    func TestReader(t *testing.T) {
    	r := strings.NewReader("0123456789")
    	tests := []struct {
    		off     int64
    		seek    int
    		n       int
    		want    string
    		wantpos int64
    		readerr error
    		seekerr string
    	}{
    		{seek: io.SeekStart, off: 0, n: 20, want: "0123456789"},
    		{seek: io.SeekStart, off: 1, n: 1, want: "1"},
    		{seek: io.SeekCurrent, off: 1, wantpos: 3, n: 2, want: "34"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/internal/notsha256/sha256block_386.s

    	SHA256ROUND0(5, 0x59f111f1, 3, 4, 5, 6, 7, 0, 1, 2)
    	SHA256ROUND0(6, 0x923f82a4, 2, 3, 4, 5, 6, 7, 0, 1)
    	SHA256ROUND0(7, 0xab1c5ed5, 1, 2, 3, 4, 5, 6, 7, 0)
    	SHA256ROUND0(8, 0xd807aa98, 0, 1, 2, 3, 4, 5, 6, 7)
    	SHA256ROUND0(9, 0x12835b01, 7, 0, 1, 2, 3, 4, 5, 6)
    	SHA256ROUND0(10, 0x243185be, 6, 7, 0, 1, 2, 3, 4, 5)
    	SHA256ROUND0(11, 0x550c7dc3, 5, 6, 7, 0, 1, 2, 3, 4)
    	SHA256ROUND0(12, 0x72be5d74, 4, 5, 6, 7, 0, 1, 2, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/strconv/ftoa_test.go

    	{1, 'f', 5, "1.00000"},
    	{1, 'g', 5, "1"},
    	{1, 'g', -1, "1"},
    	{1, 'x', -1, "0x1p+00"},
    	{1, 'x', 5, "0x1.00000p+00"},
    	{20, 'g', -1, "20"},
    	{20, 'x', -1, "0x1.4p+04"},
    	{1234567.8, 'g', -1, "1.2345678e+06"},
    	{1234567.8, 'x', -1, "0x1.2d687cccccccdp+20"},
    	{200000, 'g', -1, "200000"},
    	{200000, 'x', -1, "0x1.86ap+17"},
    	{200000, 'X', -1, "0X1.86AP+17"},
    	{2000000, 'g', -1, "2e+06"},
    	{1e10, 'g', -1, "1e+10"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. operator/pkg/util/util_test.go

    			in:   "1",
    			want: 1,
    		},
    		{
    			desc: "numeric-zero",
    			in:   "0",
    			want: 0,
    		},
    		{
    			desc: "numeric-large",
    			in:   "12345678",
    			want: 12345678,
    		},
    		{
    			desc: "numeric-negative",
    			in:   "-12345678",
    			want: -12345678,
    		},
    		{
    			desc: "float",
    			in:   "1.23456",
    			want: 1.23456,
    		},
    		{
    			desc: "float-zero",
    			in:   "0.00",
    			want: 0.00,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. src/net/http/testdata/file

    0123456789...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 11 bytes
    - Viewed (0)
  6. src/maps/iter_test.go

    		1: 1,
    		2: 1,
    	}
    	for i, v := range map[int]int{
    		0: 1,
    		2: 3,
    		4: 5,
    		6: 7,
    		8: 9,
    	} {
    		want[i] = v
    	}
    
    	if !Equal(got, want) {
    		t.Errorf("Insert got: %v, want: %v", got, want)
    	}
    }
    
    func TestCollect(t *testing.T) {
    	m := map[int]int{
    		0: 1,
    		2: 3,
    		4: 5,
    		6: 7,
    		8: 9,
    	}
    	got := Collect(All(m))
    	if !Equal(got, m) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:44:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/ascii.txt

     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 95 bytes
    - Viewed (0)
  8. src/cmd/gofmt/testdata/composites.golden

    	{3, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    }
    
    var _ = map[T]T2{
    	{1, 2}: {3, 4},
    	{5, 6}: {7, 8},
    }
    
    var _ = map[*T]*T2{
    	{1, 2}: {3, 4},
    	{5, 6}: {7, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  9. src/encoding/json/tagkey_test.go

    // license that can be found in the LICENSE file.
    
    package json
    
    import (
    	"testing"
    )
    
    type basicLatin2xTag struct {
    	V string `json:"$%-/"`
    }
    
    type basicLatin3xTag struct {
    	V string `json:"0123456789"`
    }
    
    type basicLatin4xTag struct {
    	V string `json:"ABCDEFGHIJKLMO"`
    }
    
    type basicLatin5xTag struct {
    	V string `json:"PQRSTUVWXYZ_"`
    }
    
    type basicLatin6xTag struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/collections/ImmutableFilteredListTest.groovy

     * Tests {@link ImmutableFilteredList}.
     */
    class ImmutableFilteredListTest extends Specification {
    
        def "can construct from an existing list"() {
            when:
            def list = ImmutableFilteredList.allOf([1, 2, 3, 4, 5, 6, 7, 8])
    
            then:
            list.size() == 8
            for (int i = 0; i < 8; i++) {
                assert list.get(i) == i + 1
            }
        }
    
        def "list equality works"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top