Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 800 for bug5 (0.06 sec)

  1. test/fixedbugs/issue54632.go

    // which could cause false positives in deciding when it's safe to
    // transitively inline indirect function calls.
    
    package main
    
    func main() {
    	bug1()
    	bug2(fail)
    }
    
    func bug1() {
    	fn := fail
    	fn = pass
    	fn()
    }
    
    func bug2(fn func()) {
    	fn = pass
    	fn()
    }
    
    func pass() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 14:31:08 UTC 2022
    - 609 bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/00-bug.yml

    # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
    name: Bugs
    description: The go command, standard library, or anything else
    title: "import/path: issue title"
    
    body:
      - type: markdown
        attributes:
          value: |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. releasenotes/notes/bug-report.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 26045
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 209 bytes
    - Viewed (0)
  4. releasenotes/notes/bug-report-perf.yaml

    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 20:26:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. test/fixedbugs/bug248.dir/bug0.go

    Olivier Duperray <******@****.***> 1327434495 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:48:15 UTC 2012
    - 226 bytes
    - Viewed (0)
  6. test/fixedbugs/bug248.dir/bug1.go

    Yury Smolsky <******@****.***> 1527328670 +0300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 26 15:20:42 UTC 2018
    - 226 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/bug.txt

    # Verify that go bug creates the appropriate URL issue body
    
    [!GOOS:linux] skip
    [short] skip
    
    go install
    go build -o $TMPDIR/go ./go
    env BROWSER=$GOPATH/bin/browser PATH=$TMPDIR:$PATH
    go bug
    exists $TMPDIR/browser
    grep '^go version' $TMPDIR/browser
    grep '^GOROOT/bin/go version: go version' $TMPDIR/browser
    grep '^GOROOT/bin/go tool compile -V: compile version' $TMPDIR/browser
    grep '^uname -sr: Linux' $TMPDIR/browser
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 963 bytes
    - Viewed (0)
  8. test/fixedbugs/issue5259.dir/bug.go

    // Copyright 2013 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.
    
    package bug
    
    type S struct {
    	F func()
    }
    
    type X interface {
    	Bar()
    }
    
    func Foo(x X) *S {
    	return &S{F: x.Bar}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 13 06:22:16 UTC 2013
    - 273 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

    # This test is tailored to reproduce b/141617294. In particular, the function
    # library contains "foo1", "foo2", ..., "foo20", from which "foo1" and "foo11"
    # were mapped to the same name "foo110" in the bug.
    node {
      name: "unnamed"
      op: "foo1"
    }
    node {
      name: "unnamed1"
      op: "foo11"
    }
    library {
      function {
        signature {
          name: "foo1"
        }
      }
      function {
        signature {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. releasenotes/notes/meshctl-bug-report-context-fix.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - https://github.com/istio/istio/issues/35574
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 22:32:54 UTC 2021
    - 289 bytes
    - Viewed (0)
Back to top