Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for Fixes (0.04 sec)

  1. .github/PULL_REQUEST_TEMPLATE

      really needed (ASCII art, table, or long link)
    + If there is a corresponding issue, add either `Fixes #1234` or `Updates #1234`
      (the latter if this is not a complete fix) to this comment
    + If referring to a repo other than `golang/go` you can use the
      `owner/repo#issue_number` syntax: `Fixes golang/tools#1234`
    + We do not use Signed-off-by lines in Go. Please don't add them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 02:07:46 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. releasenotes/notes/35480-ext-authz.yaml

        see the [Envoy release note](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.20.0#bug-fixes) for more
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 02 22:38:15 UTC 2021
    - 520 bytes
    - Viewed (0)
  3. releasenotes/notes/46437.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 46437
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 15 17:43:35 UTC 2023
    - 244 bytes
    - Viewed (0)
  4. releasenotes/notes/45758.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 45758
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 18:21:46 UTC 2023
    - 233 bytes
    - Viewed (0)
  5. releasenotes/notes/43853.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 43853
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 13:54:23 UTC 2023
    - 272 bytes
    - Viewed (0)
  6. docs/hotfixes.md

    ## Pre-pre requisite
    
    - A working knowledge of MinIO codebase and its various components.
    - A working knowledge of AWS S3 API behaviors and corner cases.
    
    ## Pre-requisite for backporting any fixes
    
    Fixes that are allowed a backport must satisfy any of the following criteria's:
    
    - A fix must not be a feature, for example.
    
    ```
    commit faf013ec84051b92ae0f420a658b8d35bb7bb000
    Author: Klaus Post <******@****.***>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. test/fixedbugs/bug365.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // check that compiler doesn't stop reading struct def
    // after first unknown type.
    
    // Fixes issue 2110.
    
    package main
    
    type S struct {
    	err foo.Bar // ERROR "undefined|expected package"
    	Num int
    }
    
    func main() {
    	s := S{}
    	_ = s.Num // no error here please
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 436 bytes
    - Viewed (0)
  8. src/cmd/fix/fix.go

    }
    
    // main runs sort.Sort(byName(fixes)) before printing list of fixes.
    type byName []fix
    
    func (f byName) Len() int           { return len(f) }
    func (f byName) Swap(i, j int)      { f[i], f[j] = f[j], f[i] }
    func (f byName) Less(i, j int) bool { return f[i].name < f[j].name }
    
    // main runs sort.Sort(byDate(fixes)) before applying fixes.
    type byDate []fix
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  9. SECURITY.md

    You can learn more about [FastAPI versions and how to pin and upgrade them](https://fastapi.tiangolo.com/deployment/versions/) for your project in the docs.
    
    ## Reporting a Vulnerability
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Sep 11 16:15:49 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. releasenotes/notes/51377.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 51377
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 201 bytes
    - Viewed (0)
Back to top