repo_id
stringclasses
927 values
file_path
stringlengths
99
214
content
stringlengths
2
4.15M
proposal
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/README.md
# Proposing Changes to Go ## Introduction The Go project's development process is design-driven. Significant changes to the language, libraries, or tools (which includes API changes in the main repo and all golang.org/x repos, as well as command-line changes to the `go` command) must be first discussed, and sometimes...
proposal
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/fill.el
;; Copyright 2017 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 makes fill-paragraph (M-q) add line breaks at sentence ;; boundaries in addition to normal wrapping. This is the style for Go ;; proposals. ;; ;; Loadin...
proposal
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/go2-language-changes.md
# Go 2 language change template Authors: Ian Lance Taylor, Robert Griesemer, Brad Fitzpatrick Last updated: January, 2020 ## Introduction We get more language change proposals than we have time to review thoroughly. Changing the language has serious consequences that could affect the entire Go ecosystem, so many fa...
proposal
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/LICENSE
Copyright 2014 The Go Authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistrib...
proposal
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/codereview.cfg
issuerepo: golang/go
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/43651-type-parameters.md
# Type Parameters Proposal Ian Lance Taylor\ Robert Griesemer\ August 20, 2021 ## Status This is the design for adding generic programming using type parameters to the Go language. This design has been [proposed and accepted](https://golang.org/issue/43651) as a future language change. We currently expect that this ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/45713-workspace.md
# Proposal: Multi-Module Workspaces in `cmd/go` Author(s): Michael Matloob Last updated: 2021-04-22 Discussion at https://golang.org/issue/45713. ## Abstract This proposal describes a new _workspace_ mode in the `go` command for editing multiple modules. The presence of a `go.work` file in the working directory or...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/25719-go15vendor.md
# Go 1.5 Vendor Experiment Russ Cox\ based on work by Keith Rarick\ July 2015 [_golang.org/s/go15vendor_](https://golang.org/s/go15vendor) This document is a revised copy of [https://groups.google.com/forum/#!msg/golang-dev/74zjMON9glU/4lWCRDCRZg0J](https://groups.google.com/forum/#!msg/golang-dev/74zjMON9glU/4lWCRD...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/56345-structured-logging.md
# Proposal: Structured Logging Author: Jonathan Amsterdam Date: 2022-10-19 Issue: https://go.dev/issue/56345 Discussion: https://github.com/golang/go/discussions/54763 Preliminary implementation: https://go.googlesource.com/exp/+/refs/heads/master/slog Package documentation: https://pkg.go.dev/golang.org/x/exp/sl...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/22080-dwarf-inlining.md
# Proposal: emit DWARF inlining info in the Go compiler Author(s): Than McIntosh Last updated: 2017-10-23 Discussion at: https://golang.org/issue/22080 # Abstract In Go 1.9, the inliner was enhanced to support mid-stack inlining, including tracking of inlines in the PC-value table to enable accurate tracebacks (se...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/51082-godocfmt.md
# Proposal: go/doc: headings, lists, and links in Go doc comments Russ Cox \ January 2022 Earlier discussion at https://go.dev/issue/48305 and https://go.dev/issue/45533. \ Proposal at https://go.dev/issue/51082. ## Abstract This proposal improves support for headings, lists, and links in Go doc comments, while rem...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/48815-custom-fuzz-input-types.md
# Proposal: Custom Fuzz Input Types Author: Richard Hansen <rhansen@rhansen.org> Last updated: 2023-06-08 Discussion at https://go.dev/issue/48815. ## Abstract Extend [`testing.F.Fuzz`](https://pkg.go.dev/testing#F.Fuzz) to support custom types, with their own custom mutation logic, as input parameters. This enabl...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/6977-overlapping-interfaces.md
# Proposal: Permit embedding of interfaces with overlapping method sets Author: Robert Griesemer Last update: 2019-10-16 Discussion at [golang.org/issue/6977](https://golang.org/issue/6977). ## Summary We propose to change the language spec such that embedded interfaces may have overlapping method sets. ## Backgr...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/18802-percpu-sharded.md
# Proposal: percpu.Sharded, an API for reducing cache contention Discussion at https://golang.org/issue/18802 ## Abstract As it stands, Go programs do not have a good way to avoid contention when combining highly concurrent code with shared memory locations that frequently require mutation. This proposal describes a...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/44309-user-configurable-memory-target.md
# User-configurable memory target Author: Michael Knyszek Updated: 16 February 2021 ## Background Issue [#23044](https://golang.org/issue/23044) proposed the addition of some kind of API to provide a "minimum heap" size; that is, the minimum heap goal that the GC would ever set. The purpose of a minimum heap size, ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go2draft-error-printing.md
# Error Printing — Draft Design Marcel van Lohuizen\ August 27, 2018 ## Abstract This document is a draft design for additions to the errors package to define defaults for formatting error messages, with the aim of making formatting of different error message implementations interoperable. This includes the printing...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/12416-cgo-pointers.md
# Proposal: Rules for passing pointers between Go and C Author: Ian Lance Taylor Last updated: October, 2015 Discussion at https://golang.org/issue/12416. ## Abstract List specific rules for when it is safe to pass pointers between Go and C using cgo. ## Background Go programmers need to know the rules for how to...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/draft-iofs.md
# File System Interfaces for Go — Draft Design Russ Cox\ Rob Pike\ July 2020 This is a **Draft Design**, not a formal Go proposal, because it describes a potential [large change](https://research.swtch.com/proposals-large#checklist), with integration changes needed in multiple packages in the standard library as well...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go2draft-error-handling-overview.md
# Error Handling — Problem Overview Russ Cox\ August 27, 2018 ## Introduction This overview and the accompanying [detailed draft design](go2draft-error-handling.md) are part of a collection of [Go 2 draft design documents](go2draft.md). The overall goal of the Go 2 effort is to address the most significant ways that...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/cryptography-principles.md
# Cryptography Principles Author: Filippo Valsorda\ Last updated: June 2019\ Discussion: [golang.org/issue/32466](https://golang.org/issue/32466) https://golang.org/design/cryptography-principles The Go cryptography libraries goal is to *help developers build secure applications*. Thus, they aim to be **secure**, **...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/generics-implementation-dictionaries-go1.18.md
# Go 1.18 Implementation of Generics via Dictionaries and Gcshape Stenciling This document describes the implementation of generics via dictionaries and gcshape stenciling in Go 1.18. It provides more concrete and up-to-date information than described in the [Gcshape design document](https://github.com/golang/propo...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/26903-simplify-mark-termination.md
# Proposal: Simplify mark termination and eliminate mark 2 Author(s): Austin Clements Last updated: 2018-08-09 Discussion at https://golang.org/issue/26903. ## Abstract Go's garbage collector has evolved substantially over time, and as with any software with a history, there are places where the vestigial remnant...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/TEMPLATE.md
[This is a template for Go's change proposal process, documented [here](../README.md).] # Proposal: [Title] Author(s): [Author Name, Co-Author Name] Last updated: [Date] Discussion at https://go.dev/issue/NNNNN. ## Abstract [A short summary of the proposal.] ## Background [An introduction of the necessary backg...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/27539-internal-abi.md
# Proposal: Create an undefined internal calling convention Author(s): Austin Clements Last updated: 2019-01-14 Discussion at https://golang.org/issue/27539. ## Abstract Go's current calling convention interferes with several significant optimizations, such as [register passing](https://golang.org/issue/18597) (a ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/draft-fuzzing.md
# Design Draft: First Class Fuzzing Author: Katie Hockman [golang.org/s/draft-fuzzing-design](https://golang.org/s/draft-fuzzing-design) This is the original **Design Draft**, not the formal Go proposal. The contents of this page may be out-of-date. The accepted Go proposal is Issue [#44551](https://golang.org/issu...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/37720-gopls-workspaces.md
# Proposal: Multi-project gopls workspaces Author(s): Heschi Kreinick, Rebecca Stambler Last updated: [Date] Discussion at https://golang.org/issue/32394. (Previously, https://golang.org/issue/37720) ## Abstract We propose a new workspace model for gopls that supports editing multiple projects at the same time, w...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/12302-release-proposal.md
# Proposal: A minimal release process for Go repositories Author: Dave Cheney &lt;dave@cheney.net&gt; Last updated: 03 December 2015 Status: Withdrawn Discussion at https://golang.org/issue/12302. ## Abstract In the same way that gofmt defines a single recommended way to format Go source code, this proposal estab...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/44253-generic-array-sizes.md
# Proposal: Generic parameterization of array sizes Author(s): Andrew Werner Last updated: March 16th, 2021 ## Abstract With the type parameters generics proposal has been accepted, though not yet fully specified or implemented, we can begin to talk about extension. [That proposal][type parameters] lists the follow...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/51430-revamp-code-coverage.md
# Proposal: extend code coverage testing to include applications Author(s): Than McIntosh Last updated: 2022-03-02 Discussion at https://golang.org/issue/51430 ## Abstract This document contains a proposal for improving/revamping the system used in Go for code coverage testing. ## Background ### Current support ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/47916-parameterized-go-types.md
# Additions to go/types to support type parameters Authors: Rob Findley, Robert Griesemer Last updated: 2021-08-17 ## Abstract This document proposes changes to `go/types` to expose the additional type information introduced by the type parameters proposal ([#43651](https://golang.org/issues/43651)), including the ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/40307-fuzzing.md
Moved to [golang.org/s/draft-fuzzing-design](https://golang.org/s/draft-fuzzing-design).
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/59960-heap-hugepage-util.md
# A more hugepage-aware Go heap Authors: Michael Knyszek, Michael Pratt ## Background [Transparent huge pages (THP) admin guide](https://www.kernel.org/doc/html/latest/admin-guide/mm/transhuge.html). [Go scavenging policy](30333-smarter-scavenging.md#which-memory-should-we-scavenge). (Implementation details are out...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/47781-parameterized-go-ast.md
# Additions to go/ast and go/token to support parameterized functions and types Authors: Rob Findley, Robert Griesemer Last Updated: 2021-08-18 ## Abstract This document proposes changes to `go/ast` to store the additional syntactic information necessary for the type parameters proposal ([#43651](https://golang.org...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/29934-error-values.md
# Proposal: Go 2 Error Inspection Jonathan Amsterdam\ Russ Cox\ Marcel van Lohuizen\ Damien Neil Last updated: January 25, 2019 Discussion at: https://golang.org/issue/29934 Past discussion at: - https://golang.org/design/go2draft-error-inspection - https://golang.org/design/go2draft-error-printing - https://golang...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/26160-dns-based-vanity-imports.md
# Proposal: DNS Based Vanity Imports Author(s): Sam Whited <sam@samwhited.com> Last updated: 2018-06-30 Discussion at https://golang.org/issue/26160 ## Abstract A new mechanism for performing vanity imports using DNS TXT records. ## Background Vanity imports allow the servers behind Go import paths to delegate...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/16085-conversions-ignore-tags.md
# Proposal: Ignore tags in struct type conversions Author: [Robert Griesemer](gri@golang.org) Created: June 16, 2016 Last updated: June 16, 2016 Discussion at [issue 16085](https://golang.org/issue/16085) ## Abstract This document proposes to relax struct conversions such that struct tags are ignored. An alternat...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/35112-scaling-the-page-allocator.md
# Proposal: Scaling the Go page allocator Author(s): Michael Knyszek, Austin Clements Last updated: 2019-10-18 ## Abstract The Go runtime's page allocator (i.e. `(*mheap).alloc`) has scalability problems. In applications with a high rate of heap allocation and a high GOMAXPROCS, small regressions in the allocator c...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/generics-implementation-stenciling.md
# Generics implementation - Stenciling This document describes a method to implement the [Go generics proposal](https://go.googlesource.com/proposal/+/refs/heads/master/design/go2draft-type-parameters.md). This method generates multiple implementations of a generic function by instantiating the body of that generic fu...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/44167-gc-pacer-redesign.md
# GC Pacer Redesign Author: Michael Knyszek Updated: 8 February 2021 ## Abstract Go's tracing garbage collector runs concurrently with the application, and thus requires an algorithm to determine when to start a new cycle. In the runtime, this algorithm is referred to as the pacer. Until now, the garbage collector ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/14313-benchmark-format.md
# Proposal: Go Benchmark Data Format Authors: Russ Cox, Austin Clements Last updated: February 2016 Discussion at [golang.org/issue/14313](https://golang.org/issue/14313). ## Abstract We propose to make the current output of `go test -bench` the defined format for recording all Go benchmark data. Having a defined ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/46136-vet-std-references.md
# Proposal: check references to standard library packages inconsistent with go.mod go version Author(s): Jay Conrod based on discussion with Daniel Martí, Paul Jolly, Roger Peppe, Bryan Mills, and others. Last updated: 2021-05-12 Discussion at https://golang.org/issue/46136. ## Abstract With this proposal, `go vet...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/60078-loopvar.md
# Proposal: Less Error-Prone Loop Variable Scoping David Chase \ Russ Cox \ May 2023 Discussion at https://go.dev/issue/60078. \ Pre-proposal discussion at https://go.dev/issue/56010. ## Abstract Last fall, we had a GitHub discussion at #56010 about changing for loop variables declared with `:=` from one-instance-p...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/48409-soft-memory-limit.md
# Proposal: Soft memory limit Author: Michael Knyszek Date: 15 September 2021 ## Summary This document proposes a new option for tuning the behavior of the Go garbage collector by setting a soft memory limit on the total amount of memory that Go uses. This option comes in two flavors: a new `runtime/debug` functio...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/36460-lazy-module-loading.md
# Proposal: Lazy Module Loading Author: Bryan C. Mills (with substantial input from Russ Cox, Jay Conrod, and Michael Matloob) Last updated: 2020-02-20 Discussion at https://golang.org/issue/36460. ## Abstract We propose to change `cmd/go` to avoid loading transitive module dependencies that have no observable eff...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go15bootstrap.md
# Go 1.5 Bootstrap Plan Russ Cox \ January 2015 \ golang.org/s/go15bootstrap \ ([comments on golang-dev](https://groups.google.com/d/msg/golang-dev/3bTIOleL8Ik/D8gICLOiUJEJ)) ## Abstract Go 1.5 will use a toolchain written in Go (at least in part). \ Question: how do you build Go if you need Go built already? \ Answ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/55022-pgo-implementation.md
# Proposal: Design and Implementation of Profile-Guided Optimization (PGO) for Go Author(s): Raj Barik, Jin Lin Last updated: 2022-09-12 Discussion at https://golang.org/issue/55025. \ Linked high-level issue for PGO at https://golang.org/issue/55022. ## Abstract Inefficiencies in Go programs can be isolated via p...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/13504-natural-xml.md
# Proposal: Natural XML Author(s): Sam Whited <sam@samwhited.com> Last updated: 2016-09-27 Discussion at https://golang.org/issue/13504. ## Abstract The `encoding/xml` API is arguably difficult to work with. In order to fix these issues, a more natural API is needed that acts on nodes in a tree like structure ins...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/48429-go-tool-modules.md
# Proposal: Adding tool dependencies to go.mod Author(s): Conrad Irwin Last updated: 2024-07-18 Discussion at https://golang.org/issue/48429. ## Abstract Authors of Go modules frequently use tools that are written in Go and distributed as Go modules. Although Go has good support for managing dependencies imported ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/19348-midstack-inlining.md
# Proposal: Mid-stack inlining in the Go compiler Author(s): David Lazar, Austin Clements Last updated: 2017-03-10 Discussion at: https://golang.org/issue/19348 See also: https://golang.org/s/go19inliningtalk # Abstract As of Go 1.8, the compiler does not inline mid-stack functions (functions that call other non-...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/12914-monotonic.md
# Proposal: Monotonic Elapsed Time Measurements in Go Author: Russ Cox Last updated: January 26, 2017<br> Discussion: [https://golang.org/issue/12914](https://golang.org/issue/12914).<br> URL: https://golang.org/design/12914-monotonic ## Abstract Comparison and subtraction of times observed by `time.Now` can return...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/40276-go-install.md
## Proposal: `go install` should install executables in module mode outside a module Authors: Jay Conrod, Daniel Martí Last Updated: 2020-09-29 Discussion at https://golang.org/issue/40276. ## Abstract Authors of executables need a simple, reliable, consistent way for users to build and install exectuables in modu...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/28221-go2-transitions.md
# Proposal: Go 2 transition Author: Ian Lance Taylor Last update: October 15, 2018 ## Abstract A proposal for how to make incompatible changes from Go 1 to Go 2 while breaking as little as possible. ## Background Currently the Go language and standard libraries are covered by the [Go 1 compatibility guarantee](ht...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/16339-alias-decls.md
# Proposal: Alias declarations for Go Authors: Robert Griesemer & Rob Pike. Last updated: July 18, 2016 Discussion at https://golang.org/issue/16339. ## Abstract We propose to add alias declarations to the Go language. An alias declaration introduces an alternative name for an object (type, function, etc.) declared ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/18130-type-alias.md
# Proposal: Type Aliases Authors: Russ Cox, Robert Griesemer Last updated: December 16, 2016 Discussion at https://golang.org/issue/18130. ## Abstract We propose to add to the Go language a type alias declaration, which introduces an alternate name for an existing type. The primary motivation is to enable gradual ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/12800-sweep-free-alloc.md
# Proposal: Dense mark bits and sweep-free allocation or, *How I learned to stop worrying and love the bitmap* Author: Austin Clements Last updated: 2015-09-30 Discussion at https://golang.org/issue/12800. ## Abstract This document proposes a change to memory allocation to eliminate the need for the sweeper and a...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/55022-pgo.md
# Proposal: profile-guided optimization Authors: Cherry Mui, Austin Clements, Michael Pratt Last updated: 2022-09-12 Discussion at https://golang.org/issue/55022. \ Previous discussion at https://golang.org/issue/28262. ## Abstract We propose adding support for profile-guided optimization (PGO) to the Go gc toolc...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/16704-cidr-notation-no-proxy.md
# Proposal: Add support for CIDR notation in no_proxy variable Author(s): Rudi Kramer, James Forrest Last updated: 2017-07-10 Discussion at https://golang.org/issue/16704. ## Abstract The old convention for no_proxy is to use a full domain name, a partial domain name, a singular ip address or a combination. The ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/17503-eliminate-rescan.md
# Proposal: Eliminate STW stack re-scanning Author(s): Austin Clements, Rick Hudson Last updated: 2016-10-21 Discussion at https://golang.org/issue/17503. ## Abstract As of Go 1.7, the one remaining source of unbounded and potentially non-trivial stop-the-world (STW) time is stack re-scanning. We propose to elimin...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/14386-zip-package-archives.md
# Proposal: Zip-based Go package archives Author: Russ Cox Last updated: February 2016 Discussion at https://golang.org/issue/14386. ## Abstract Go package archives (the `*.a` files manipulated by `go tool pack`) use the old Unix ar archive format. I propose to change both Go package archives and Go object files ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/draft-gobuild.md
# Bug-resistant build constraints — Draft Design Russ Cox\ June 30, 2020 This is a **Draft Design**, not a formal Go proposal, because it describes a potential [large change](https://research.swtch.com/proposals-large). The goal of circulating this draft design is to collect feedback to shape an intended eventual pro...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/14951-soft-heap-limit.md
# Proposal: Separate soft and hard heap size goal Author(s): Austin Clements Inspired by discussion with Rick Hudson and Rhys Hiltner Last updated: 2017-10-31 Discussion at https://golang.org/issue/14951. ## Background The GC pacer is responsible for determining when to start a GC cycle and how much back-pressure...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/generics-implementation-gcshape.md
# Generics implementation - GC Shape Stenciling This document describes a method to implement the [Go generics proposal](https://go.googlesource.com/proposal/+/refs/heads/master/design/go2draft-type-parameters.md) by stenciling the code for each different *GC shape* of the instantiated types, and using a *dictionary* ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/24301-versioned-go.md
# Proposal: Versioned Go Modules Author: Russ Cox\ Last Updated: March 20, 2018\ Discussion: https://golang.org/issue/24301 ## Abstract We propose to add awareness of package versions to the Go toolchain, especially the `go` command. ## Background The first half of the blog post [Go += Package Versioning](https://...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/56986-godebug.md
# Proposal: Extended backwards compatibility for Go Russ Cox \ December 2022 Earlier discussion at https://go.dev/issue/55090. Proposal at https://go.dev/issue/56986. ## Abstract Go's emphasis on backwards compatibility is one of its key strengths. There are, however, times when we cannot maintain strict compatibi...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/33974-add-public-lockedfile-pkg.md
# Proposal: make the internal [lockedfile](https://godoc.org/github.com/golang/go/src/cmd/go/internal/lockedfile/) package public Author(s): [Adrien Delorme] Last updated: 2019-10-15 Discussion at https://golang.org/issue/33974. ## Abstract Move already existing code residing in `golang/go/src/cmd/go/internal/lock...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/draft-embed.md
# Go command support for embedded static assets (files) — Draft Design Russ Cox\ Brad Fitzpatrick\ July 2020 This is a **Draft Design**, not a formal Go proposal, because it describes a potential [large change](https://research.swtch.com/proposals-large#checklist) that addresses the same need as many third-party pack...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/30411-env.md
# Proposal: `go` command configuration file Russ Cox Last Updated: March 1, 2019. [golang.org/design/30411-env](https://golang.org/design/30411-env) Discussion at [golang.org/issue/30411](https://golang.org/issue/30411) ## Abstract Setting environment variables for `go` command configuration is too difficult and ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/25530-sumdb.md
# Proposal: Secure the Public Go Module Ecosystem Russ Cox\ Filippo Valsorda Last updated: April 24, 2019. [golang.org/design/25530-sumdb](https://golang.org/design/25530-sumdb) Discussion at [golang.org/issue/25530](https://golang.org/issue/25530). ## Abstract We propose to secure the public Go module ecosystem ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/4899-testing-helper.md
# Proposal: testing: better support test helper functions with TB.Helper Author: Caleb Spare, based on previous work by Josh Bleecher Snyder Last updated: 2016-12-27 Discussion at https://golang.org/issue/4899. ## Abstract This proposal is about fixing the long-standing issue [#4899](https://golang.org/issue/4899)...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go13compiler.md
# Go 1.3+ Compiler Overhaul Russ Cox \ December 2013 \ golang.org/s/go13compiler ## Abstract The Go compiler today is written in C. It is time to move to Go. [**Update, 2014**: This work was completed and presented at GopherCon. See “[Go from C to Go](https://www.youtube.com/watch?v=QIE5nV5fDwA)”.] [**Update, 2023...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/13432-mobile-audio.md
# Proposal: Audio for Mobile Author: Jaana Burcu Dogan With input from David Crawshaw, Hyang-Ah Kim and Andrew Gerrand. Last updated: November 30, 2015 Discussion at https://golang.org/issue/13432. ## Abstract This proposal suggests core abstractions to support audio decoding and playback on mobile devices. ## B...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/12750-localization.md
# Proposal: Localization support in Go Discussion at https://golang.org/issue/12750. ## Abstract This proposal gives a big-picture overview of localization support for Go, explaining how all pieces fit together. It is intended as a guide to designing the individual packages and to allow catching design issues early. ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/26756-rawxml-token.md
# Proposal: Raw XML Token Author(s): Sam Whited <sam@samwhited.com> Last updated: 2018-09-01 Discussion at https://golang.org/issue/26756 CL at https://golang.org/cl/127435 ## Abstract This proposal defines a mechanism by which users can emulate the `,innerxml` struct tag using XML tokens. ## Background When ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/19113-signed-shift-counts.md
# Proposal: Permit Signed Integers as Shift Counts for Go 2 Robert Griesemer Last updated: January 17, 2019 Discussion at [golang.org/issue/19113](https://golang.org/issue/19113). ## Summary We propose to change the language spec such that the shift count (the rhs operand in a `<<` or `>>` operation) may be a _sig...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/16410-heap-viewer.md
# Proposal: Go Heap Dump Viewer Author(s): Michael Matloob Last updated: 20 July 2016 Discussion at https://golang.org/issue/16410 ## Abstract This proposal is for a heap dump viewer for Go programs. This proposal will provide a web-based, graphical viewer as well as packages for analyzing and understanding heap d...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/17505-concurrent-rescan.md
# Proposal: Concurrent stack re-scanning Author(s): Austin Clements, Rick Hudson Last updated: 2016-10-18 Discussion at https://golang.org/issue/17505. **Note:** We are not actually proposing this. This design was developed before proposal #17503, which is a dramatically simpler solution to the problem of stack re-...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/57001-gotoolchain.md
# Proposal: Extended forwards compatibility in Go Russ Cox \ December 2022 Earlier discussion at https://go.dev/issue/55092. Proposal at https://go.dev/issue/57001. ## Abstract Many people believe the `go` line in the `go.mod` file specifies which Go toolchain to use. This proposal would correct this widely held m...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/25530-notary.md
Moved to [golang.org/design/25530-sumdb](https://golang.org/design/25530-sumdb).
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/2775-binary-only-packages.md
# Proposal: Binary-Only Packages Author: Russ Cox Last updated: April 24, 2016 Discussion at [golang.org/issue/2775](https://golang.org/issue/2775). ## Abstract We propose a way to incorporate binary-only packages (without complete source code) into a cmd/go workspace. ## Background It is common in C for a code ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/40724-register-calling.md
# Proposal: Register-based Go calling convention Author: Austin Clements, with input from Cherry Zhang, Michael Knyszek, Martin Möhrmann, Michael Pratt, David Chase, Keith Randall, Dan Scales, and Ian Lance Taylor. Last updated: 2020-08-10 Discussion at https://golang.org/issue/40724. ## Abstract We propose switch...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/11970-decentralized-gc.md
# Proposal: Decentralized GC coordination Author(s): Austin Clements Last updated: 2015-10-25 Discussion at https://golang.org/issue/11970. ## Abstract The Go 1.5 GC is structured as a straight-line coordinator goroutine plus several helper goroutines. All state transitions go through the coordinator. This makes s...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/6282-table-data.md
# Proposal: Multi-dimensional slices Author(s): Brendan Tracey, with input from the gonum team Last updated: November 17th, 2016 ## Abstract This document proposes a generalization of Go slices from one to multiple dimensions. This language change makes slices more naturally suitable for applications such as image ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/12166-subtests.md
# Proposal: testing: programmatic sub-test and sub-benchmark support Author: Marcel van Lohuizen _With input from Sameer Ajmani, Austin Clements, Russ Cox, Bryan Mills, and Damien Neil._ Last updated: September 2, 2015 Discussion at https://golang.org/issue/12166. ## Abstract This proposal introduces programmatic...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/15292-generics.md
# Proposal: Go should have generics Author: [Ian Lance Taylor](iant@golang.org) Created: January 2011 Last updated: April 2016 Discussion at https://golang.org/issue/15292 ## Abstract Go should support some form of generic programming. Generic programming enables the representation of algorithms and data structur...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/13073-code-of-conduct.md
# Proposal: A Code of Conduct for the Go community Author: Andrew Gerrand <adg@golang.org> Last updated: 17 November 2015 ## Abstract This proposal specifies a Code of Conduct for the Go community. The code is to be enforced in all project-operated spaces (specified in the Code of Conduct text, below). Other Go-rel...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/2981-go-test-json.md
# Proposal: `-json` flag in `go test` Author(s): Nodir Turakulov &lt;nodir@google.com&gt; _With initial input by Russ Cox, Caleb Spare, Andrew Gerrand and Minux Ma._ Last updated: 2016-09-14 Discussion at https://golang.org/issue/2981. * [Abstract](#abstract) * [Background](#background) * [Proposal](#proposal) ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/60773-execution-tracer-overhaul.md
# Execution tracer overhaul Authored by mknyszek@google.com with a mountain of input from others. In no particular order, thank you to Felix Geisendorfer, Nick Ripley, Michael Pratt, Austin Clements, Rhys Hiltner, thepudds, Dominik Honnef, and Bryan Boreham for your invaluable feedback. ## Background [Original desi...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/37112-unstable-runtime-metrics.md
# Proposal: API for unstable runtime metrics Author: Michael Knyszek ## Background & Motivation The need for a new API for unstable metrics was already summarized quite well by @aclements, so I'll quote that here: > The runtime currently exposes heap-related metrics through > `runtime.ReadMemStats` (which can be us...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/draft-vulndb.md
# Design Draft: Go Vulnerability Database Authors: Roland Shoemaker, Filippo Valsorda [golang.org/design/draft-vulndb](https://golang.org/design/draft-vulndb) This is a Draft Design, not a formal Go proposal, since it is a large change that is still flexible. The goal of circulating this draft design is to collect f...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/17280-profile-labels.md
# Proposal: Support for pprof profiler labels Author: Michael Matloob Last updated: 15 May 2017 (to reflect actual implementation) Discussion at https://golang.org/issue/17280. ## Abstract This document proposes support for adding labels to pprof profiler records. Labels are a key-value map that is used to disting...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/11502-securitypolicy.md
# Proposal: Security Policy for Go Author(s): Jason Buberel Last updated: 2015-07-31 Discussion at https://golang.org/issue/11502. ## Abstract Go programs are being deployed as part of security-critical applications. Although Go has a generally good history of being free of security vulnerabilities, the current pr...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/36606-64-bit-field-alignment.md
# Proposal: Make 64-bit fields be 64-bit aligned on 32-bit systems, add //go:packed, //go:align directives Author(s): Dan Scales (with input from many others) Last updated: 2020-06-08 Initial proposal and discussion at: https://github.com/golang/go/issues/36606 ## Abstract We propose to change the default layout ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go13linker.md
# Go 1.3 Linker Overhaul Russ Cox \ November 2013 \ golang.org/s/go13linker ## Abstract The linker is one of the slowest parts of building and running a typical Go program. To address this, we plan to split the linker into two pieces. Perhaps one can be written in Go. [**Update, 2023.** This plan was originally pub...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go2draft-error-values-overview.md
# Error Values — Problem Overview Russ Cox\ August 27, 2018 ## Introduction This overview and the accompanying detailed draft designs are part of a collection of [Go 2 draft design documents](go2draft.md). The overall goal of the Go 2 effort is to address the most significant ways that Go fails to scale to large cod...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/4238-go12nil.md
# Go 1.2 Field Selectors and Nil Checks Author: Russ Cox Last updated: July 2013 Discussion at https://go.dev/issue/4238. Originally at https://go.dev/s/go12nil. Implemented in Go 1.2 release. ## Abstract For Go 1.2, we need to define that, if `x` is a pointer to a struct type and `x == nil`, `&x.Field` causes a...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/19308-number-literals.md
# Proposal: Go 2 Number Literal Changes Russ Cox\ Robert Griesemer Last updated: March 6, 2019 [golang.org/design/19308-number-literals](https://golang.org/design/19308-number-literals) Discussion at: - [golang.org/issue/19308](https://golang.org/issue/19308) (binary integer literals) - [golang.org/issue/12...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go2draft-contracts.md
# Contracts — Draft Design Ian Lance Taylor\ Robert Griesemer\ July 31, 2019 ## Superseded We will not be pursuing the approach outlined in this design draft. It has been replaced by a [new proposal](https://go.googlesource.com/proposal/+/refs/heads/master/design/43651-type-parameters.md). This document exists for h...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/43810-go-pmem.md
### Proposal: Add support for Persistent Memory in Go Authors: Jerrin Shaji George, Mohit Verma, Rajesh Venkatasubramanian, Pratap Subrahmanyam Last updated: January 20, 2021 Discussion at https://golang.org/issue/43810. ## Abstract Persistent memory is a new memory technology that allows byte-addressability at DR...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/go-generate.md
# Go generate: A Proposal Author: Rob Pike Accepted in the Go 1.4 release. ## Introduction The go build command automates the construction of Go programs but sometimes preliminary processing is required, processing that go build does not support. Motivating examples include: - yacc: generating .go files from yacc ...
design
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/proposal/design/42372-wasmexport.md
# Proposal: go:wasmexport directive Author: Francesco Guardiani Last updated: 2020-12-17 Discussion at https://golang.org/issue/42372. ## Abstract The goal of this proposal is to add a new compiler directive `go:wasmexport` to export Go functions when compiling to WebAssembly. This directive is similar to the `go...