Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 309 for issues (0.35 sec)

  1. src/cmd/cgo/internal/testshared/testdata/exe/exe.go

    	// exercising https://golang.org/issues/17594
    	reflect.TypeOf(os.Stdout).Elem()
    	runtime.GC()
    	depBase.V = depBase.F() + 1
    
    	var c *C
    	if reflect.TypeOf(F).Out(0) != reflect.TypeOf(c) {
    		panic("bad reflection results, see golang.org/issue/18252")
    	}
    
    	sp := reflect.New(reflect.TypeOf(slicePtr).Elem())
    	s := sp.Interface()
    
    	if reflect.TypeOf(s) != reflect.TypeOf(slicePtr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 906 bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/01-pkgsite.yml

    name: Pkg.go.dev bugs or feature requests
    description: Issues or feature requests for the documentation site
    title: "x/pkgsite: issue title"
    labels: ["pkgsite"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: url
        attributes:
          label: "What is the URL of the page with the issue?"
        validations:
          required: true
      - type: input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/unnamed1/main.go

    //go:build ignore
    
    package main
    
    // // No C code required.
    import "C"
    
    func FuncInt() int { return 1 }
    
    // Add a recursive type to check that type equality across plugins doesn't
    // crash. See https://golang.org/issues/19258
    func FuncRecursive() X { return X{} }
    
    type Y struct {
    	X *X
    }
    type X struct {
    	Y Y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 487 bytes
    - Viewed (0)
  4. misc/chrome/gophertool/gopher.js

                // avoid some redirect latency and go right there, since
                // one is easy. (no server-side mapping)
                return "https://github.com/golang/go/issues/" + t;
            }
            return "https://golang.org/cl/" + t;
        }
    
        if (gerritChangeIdRE.test(t)) {
            return "https://golang.org/cl/" + t;
        }
    
        var match = commitRE.exec(t);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/issues_test.go

    // Copyright 2024 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 file holds test cases for individual issues
    // for which there is (currently) no better location.
    
    package syntax
    
    import (
    	"strings"
    	"testing"
    )
    
    func TestIssue67866(t *testing.T) {
    	var tests = []string{
    		"package p; var _ = T{@0: 0}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_predicates.go

    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    // all loaded packages and their dependencies.
    // For more information, see https://github.com/golang/go/issues/57497.
    func Identical(x, y Type) bool {
    	var c comparer
    	return c.identical(x, y, nil)
    }
    
    // IdenticalIgnoreTags reports whether x and y are identical types if tags are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/go/script_test.go

    		}
    	}
    
    	return env, nil
    }
    
    var extraEnvKeys = []string{
    	"SYSTEMROOT",         // must be preserved on Windows to find DLLs; golang.org/issue/25210
    	"WINDIR",             // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    	"LIBRARY_PATH",       // allow override of non-standard static library paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/gen/arithBoundaryGen.go

    type sizedTestData struct {
    	name string
    	sn   string
    	u    []uint64
    	i    []int64
    }
    
    // values to generate tests. these should include the smallest and largest values, along
    // with any other values that might cause issues. we generate n^2 tests for each size to
    // cover all cases.
    var szs = []sizedTestData{
    	sizedTestData{name: "uint64", sn: "64", u: []uint64{0, 1, 4294967296, 0xffffFFFFffffFFFF}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. doc/README.md

    If your CL addresses an accepted proposal, mention the proposal issue number in
    your release note in the form `/issue/NUMBER`. A link to the issue in the text
    will have this form (see below). If you don't want to mention the issue in the
    text, add it as a comment:
    ```
    <!-- go.dev/issue/12345 -->
    ```
    If an accepted proposal is mentioned in a CL but not in the release notes, it will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/msan_test.go

    	}
    
    	t.Parallel()
    	// Overcommit is enabled by default on FreeBSD (vm.overcommit=0, see tuning(7)).
    	// Do not skip tests with stricter overcommit settings unless testing shows that FreeBSD has similar issues.
    	if goos == "linux" {
    		requireOvercommit(t)
    	}
    	config := configure("memory")
    	config.skipIfCSanitizerBroken(t)
    
    	mustRun(t, config.goCmd("build", "std"))
    
    	cases := []struct {
    		src         string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top