Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 800 for bug5 (0.13 sec)

  1. src/cmd/go/internal/bug/bug.go

    	"cmd/go/internal/web"
    	"cmd/go/internal/work"
    )
    
    var CmdBug = &base.Command{
    	Run:       runBug,
    	UsageLine: "go bug",
    	Short:     "start a bug report",
    	Long: `
    Bug opens the default browser and starts a new bug report.
    The report includes useful system information.
    	`,
    }
    
    func init() {
    	CmdBug.Flag.BoolVar(&cfg.BuildV, "v", false, "")
    	base.AddChdirFlag(&CmdBug.Flag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/go/doc/testdata/bugpara.0.golden

    // 
    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
  3. src/go/doc/testdata/bugpara.2.golden

    // 
    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/bug_report.yml

    name: Bug report
    description: Report a bug to help us improve Istio
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for taking the time to fill out this bug report!
      - type: checkboxes
        id: security-check
        attributes:
          label: Is this the right place to submit this?
          description: |-
            This is used to report product bugs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. test/fixedbugs/bug000.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	var x int;
    	switch x {
    	case 0:
    		{}
    	case 1:
    		x = 0;
    	}
    }
    /*
    bug0.go:8: case statement out of place
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 302 bytes
    - Viewed (0)
  6. test/fixedbugs/bug272.go

    // https://golang.org/issue/589
    
    package main
    
    func main() {	
    	n := int64(100)
    	x := make([]int, n)
    	x[99] = 234;	
    	z := x[n-1]
    	if z != 234 {
    		println("BUG")
    	}
    	n |= 1<<32
    	defer func() {
    		recover()
    	}()
    	z = x[n-1]
    	println("BUG2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 407 bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/bug-report.yaml

    name: Bug Report
    description: Report a bug encountered while operating Kubernetes
    labels: kind/bug
    body:
      - type: textarea
        id: problem
        attributes:
          label: What happened?
          description: |
            Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
            If this matter is security related, please disclose it privately via https://kubernetes.io/security
        validations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 28 09:34:43 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. BUG-BOUNTY.md

    Yuri Schimke <******@****.***> 1579981977 -0600
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 25 19:52:57 UTC 2020
    - 361 bytes
    - Viewed (0)
  9. ISSUES.md

    1.  It must be a bug/performance issue or a feature request or a build issue or
        a documentation issue (for small doc fixes please send a PR instead).
    1.  Make sure the Issue Template is filled out.
    1.  The issue should be related to the repo it is created in.
    
    **Here's why we have this policy:** We want to focus on the work that benefits
    the whole community, e.g., fixing bugs and adding features. Individual support
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 11 22:37:27 UTC 2021
    - 606 bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/bug_report.md

    ## Current Behavior
    <!--- If describing a bug, tell us what happens instead of the expected behavior -->
    <!--- If suggesting a change/improvement, explain the difference from current behavior -->
    
    ## Possible Solution
    <!--- Not obligatory, but suggest a fix/reason for the bug, -->
    <!--- or ideas how to implement the addition or change -->
    
    ## Steps to Reproduce (for bugs)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:37:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top