Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 317 for 2345 (0.06 sec)

  1. src/mime/quotedprintable/reader.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package quotedprintable implements quoted-printable encoding as specified by
    // RFC 2045.
    package quotedprintable
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"io"
    )
    
    // Reader is a quoted-printable decoder.
    type Reader struct {
    	br   *bufio.Reader
    	rerr error  // last read error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 17:00:08 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  2. test/fixedbugs/bug356.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 1808
    
    package main
    
    func main() {
    	var i uint64
    	var x int = 12345
    
    	if y := x << (i&5); y != 12345<<0 {
    		println("BUG bug344", y)
    		return
    	}
    	
    	i++
    	if y := x << (i&5); y != 12345<<1 {
    		println("BUG bug344a", y)
    	}
    	
    	i = 70
    	if y := x << i; y != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 678 bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	// arrays
    	{"%v", array, "[1 2 3 4 5]"},
    	{"%v", iarray, "[1 hello 2.5 <nil>]"},
    	{"%v", barray, "[1 2 3 4 5]"},
    	{"%v", &array, "&[1 2 3 4 5]"},
    	{"%v", &iarray, "&[1 hello 2.5 <nil>]"},
    	{"%v", &barray, "&[1 2 3 4 5]"},
    
    	// slices
    	{"%v", slice, "[1 2 3 4 5]"},
    	{"%v", islice, "[1 hello 2.5 <nil>]"},
    	{"%v", bslice, "[1 2 3 4 5]"},
    	{"%v", &slice, "&[1 2 3 4 5]"},
    	{"%v", &islice, "&[1 hello 2.5 <nil>]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/preempt.go

    	// deadlock and timeout.
    	runtime.GC()
    
    	println("OK")
    }
    
    //go:noinline
    func frameless() {
    	for i := int64(0); i < 1<<62; i++ {
    		out += i * i * i * i * i * 12345
    	}
    }
    
    var out int64
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 17:46:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. src/slices/iter_test.go

    		},
    		{
    			name:   "even",
    			s:      []int{1, 2, 3, 4},
    			n:      2,
    			chunks: [][]int{{1, 2}, {3, 4}},
    		},
    		{
    			name:   "odd",
    			s:      []int{1, 2, 3, 4, 5},
    			n:      2,
    			chunks: [][]int{{1, 2}, {3, 4}, {5}},
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			var chunks [][]int
    			for c := range Chunk(tc.s, tc.n) {
    				chunks = append(chunks, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz.txt

    go test fuzz v1
    []byte("12345")
    -- corpustesting/testdata/fuzz/FuzzPass/1 --
    go test fuzz v1
    []byte("00000")
    -- corpustesting/testdata/fuzz/FuzzPassString/1 --
    go test fuzz v1
    string("hello")
    -- corpustesting/testdata/fuzz/FuzzPanic/1 --
    malformed
    -- corpustesting/testdata/fuzz/FuzzInNestedDir/anotherdir/1 --
    go test fuzz v1
    []byte("12345")
    -- corpustesting/testdata/fuzz/FuzzWrongType/1 --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/ProvidersTest.groovy

        Integer someOtherValue() {
            return 123
        }
    
        @Override
        Integer someOtherValue2() {
            return 1234
        }
    
        @Override
        Integer someOtherValue3() {
            return 12345
        }
    
        @Override
        boolean isNoValueProviderImmutable() {
            return true
        }
    
        @Override
        ManagedFactory managedFactory() {
            return new ManagedFactories.ProviderManagedFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. test/range.go

    		panic("fail")
    	}
    }
    
    // test that range over slice only evaluates
    // the expression after "range" once.
    
    var nmake = 0
    
    func makeslice() []int {
    	nmake++
    	return []int{1, 2, 3, 4, 5}
    }
    
    func testslice() {
    	s := 0
    	nmake = 0
    	for _, v := range makeslice() {
    		s += v
    	}
    	if nmake != 1 {
    		println("range called makeslice", nmake, "times")
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 05:50:54 UTC 2017
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.23.5.linux-amd64.txt

    golang.org/toolchain v0.0.1-go1.23.5.linux-amd64
    written by hand
    -- .info --
    {"Version":"v0.0.1-go1.23.5.linux-amd64"}
    -- .mod --
    golang.org/toolchain
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 185 bytes
    - Viewed (0)
  10. pkg/proxy/util/utils_test.go

    			addr:   "0.0.0.0:12345",
    			port:   23456,
    			expect: "0.0.0.0:12345",
    		},
    		{
    			name:   "non-zeros IPv4 config",
    			addr:   "9.8.7.6",
    			port:   12345,
    			expect: "9.8.7.6:12345",
    		},
    		{
    			name:   "IPv6 \"[::]\" bind address has port",
    			addr:   "[::]:12345",
    			port:   23456,
    			expect: "[::]:12345",
    		},
    		{
    			name:   "IPv6 config",
    			addr:   "fd00:1::5",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top