Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for Fixes (0.06 sec)

  1. src/cmd/fix/main.go

    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool fix [-diff] [-r fixname,...] [-force fixname,...] [path ...]\n")
    	flag.PrintDefaults()
    	fmt.Fprintf(os.Stderr, "\nAvailable rewrites are:\n")
    	sort.Sort(byName(fixes))
    	for _, f := range fixes {
    		if f.disabled {
    			fmt.Fprintf(os.Stderr, "\n%s (disabled)\n", f.name)
    		} else {
    			fmt.Fprintf(os.Stderr, "\n%s\n", f.name)
    		}
    		desc := strings.TrimSpace(f.desc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/goline_order.txt

    cmp go.mod go.mod.orig
    stderr '^go: module ./m1 requires go >= 1.21.2 \(running go 1.21.1\)$'
    
    # go get go@1.21.2 fixes the error.
    cp go.mod.orig go.mod
    go get go@1.21.2
    go list -deps -tags usem1
    
    # go get -tags usem1 fixes the error.
    cp go.mod.orig go.mod
    go get -tags usem1
    go list -deps -tags usem1
    
    # go get fixes the error.
    cp go.mod.orig go.mod
    go get
    go list -deps -tags usem1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. .github/PULL_REQUEST_TEMPLATE.md

    ## How to test this PR?
    
    
    ## Types of changes
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Optimization (provides speedup with no functional changes)
    - [ ] Breaking change (fix or feature that would cause existing functionality to change)
    
    ## Checklist:
    - [ ] Fixes a regression (If yes, please add `commit-id` or `PR #` here)
    - [ ] Unit tests added/updated
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 14 17:29:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    For example, when Gradle 7 was the latest major version, several releases were made in the 6.x line, including Gradle 6.9 (and subsequent releases).
    
    As such, each major Gradle release causes:
    
    * The previous major version becomes maintenance only. It will only receive critical bug fixes and security fixes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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