Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for issue10260 (0.13 sec)

  1. src/runtime/race/testdata/issue13264_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package race_test
    
    // golang.org/issue/13264
    // The test is that this compiles at all.
    
    func issue13264() {
    	for ; ; []map[int]int{}[0][0] = 0 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 16 17:20:26 UTC 2015
    - 310 bytes
    - Viewed (0)
  2. test/fixedbugs/issue10607a.go

    // skip
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This is built by issue10607.go with a -B option.
    // Verify that we have one build-id note with the expected value.
    
    package main
    
    import (
    	"bytes"
    	"debug/elf"
    	"fmt"
    	"os"
    )
    
    func main() {
    	f, err := elf.Open("/proc/self/exe")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 14:00:27 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. src/go/constant/value_test.go

    	{`"` + xxx + `xxx"`, `"` + xxx + `...`, `"` + xxx + `xxx"`},
    	{`"` + xxx + xxx + `xxx"`, `"` + xxx + `...`, `"` + xxx + xxx + `xxx"`},
    	{issue14262, `"بموجب الشروط التالية نسب المصنف — يجب عليك أن تنسب العمل بالطريقة ال...`, issue14262},
    
    	// Int
    	{"0", "0", "0"},
    	{"-1", "-1", "-1"},
    	{"12345", "12345", "12345"},
    	{"-12345678901234567890", "-12345678901234567890", "-12345678901234567890"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    		// of NUL-terminated C-strings.
    		file: "testdata/pax-nul-path.tar",
    		err:  ErrHeader,
    	}, {
    		file: "testdata/neg-size.tar",
    		err:  ErrHeader,
    	}, {
    		file: "testdata/issue10968.tar",
    		err:  ErrHeader,
    	}, {
    		file: "testdata/issue11169.tar",
    		err:  ErrHeader,
    	}, {
    		file: "testdata/issue12435.tar",
    		err:  ErrHeader,
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    // List of files that the compiler cannot errorcheck with the new typechecker (types2).
    var types2Failures = setOf(
    	"shift1.go",               // types2 reports two new errors which are probably not right
    	"fixedbugs/issue10700.go", // types2 should give hint about ptr to interface
    	"fixedbugs/issue18331.go", // missing error about misuse of //go:noescape (irgen needs code from noder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top