repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/idna/pre_go118.go
vendor/golang.org/x/net/idna/pre_go118.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. // Copyright 2021 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. //go:build !go1.18 package idna const transitionalLookup = true
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/idna/tables12.0.0.go
vendor/golang.org/x/net/idna/tables12.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.14 && !go1.16 package idna // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "12.0.0" var mappings string = "" + // Size: 8178 bytes "\x00\x01 \x03 ̈\x01a\x0...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/idna/trie13.0.0.go
vendor/golang.org/x/net/idna/trie13.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. // Copyright 2016 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. //go:build go1.16 package idna // appendMapping appends the mapping for the res...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/idna/tables11.0.0.go
vendor/golang.org/x/net/idna/tables11.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.13 && !go1.14 package idna // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "11.0.0" var mappings string = "" + // Size: 8175 bytes "\x00\x01 \x03 ̈\x01a\x0...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/doctype.go
vendor/golang.org/x/net/html/doctype.go
// Copyright 2011 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 html import ( "strings" ) // parseDoctype parses the data from a DoctypeToken into a name, // public identifier, and system identifier. It returns a ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/node.go
vendor/golang.org/x/net/html/node.go
// Copyright 2011 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 html import ( "golang.org/x/net/html/atom" ) // A NodeType is the type of a Node. type NodeType uint32 const ( ErrorNode NodeType = iota TextNode ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/token.go
vendor/golang.org/x/net/html/token.go
// Copyright 2010 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 html import ( "bytes" "errors" "io" "strconv" "strings" "golang.org/x/net/html/atom" ) // A TokenType is the type of a Token. type TokenType ui...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/render.go
vendor/golang.org/x/net/html/render.go
// Copyright 2011 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 html import ( "bufio" "errors" "fmt" "io" "strings" ) type writer interface { io.Writer io.ByteWriter WriteString(string) (int, error) } // R...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/iter.go
vendor/golang.org/x/net/html/iter.go
// Copyright 2024 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. //go:build go1.23 package html import "iter" // Ancestors returns an iterator over the ancestors of n, starting with n.Parent. // // Mutating a Node or its p...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/foreign.go
vendor/golang.org/x/net/html/foreign.go
// Copyright 2011 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 html import ( "strings" ) func adjustAttributeNames(aa []Attribute, nameMap map[string]string) { for i := range aa { if newName, ok := nameMap[aa[...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/entity.go
vendor/golang.org/x/net/html/entity.go
// Copyright 2010 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 html // All entities that do not end with ';' are 6 or fewer bytes long. const longestEntityWithoutSemicolon = 6 // entity is a map from HTML entity n...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/const.go
vendor/golang.org/x/net/html/const.go
// Copyright 2011 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 html // Section 12.2.4.2 of the HTML5 specification says "The following elements // have varying levels of special parsing rules". // https://html.spec...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/doc.go
vendor/golang.org/x/net/html/doc.go
// Copyright 2010 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 html implements an HTML5-compliant tokenizer and parser. Tokenization is done by creating a Tokenizer for an io.Reader r. It is the caller's respons...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/escape.go
vendor/golang.org/x/net/html/escape.go
// Copyright 2010 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 html import ( "bytes" "strings" "unicode/utf8" ) // These replacements permit compatibility with old numeric entities that // assumed Windows-1252 ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/parse.go
vendor/golang.org/x/net/html/parse.go
// Copyright 2010 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 html import ( "errors" "fmt" "io" "strings" a "golang.org/x/net/html/atom" ) // A parser implements the HTML5 parsing algorithm: // https://html...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/charset/charset.go
vendor/golang.org/x/net/html/charset/charset.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 charset provides common text encodings for HTML documents. // // The mapping from encoding labels to encodings is defined at // https://encoding.spec...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/atom/table.go
vendor/golang.org/x/net/html/atom/table.go
// Code generated by go generate gen.go; DO NOT EDIT. //go:generate go run gen.go package atom const ( A Atom = 0x1 Abbr Atom = 0x4 Accept Atom = 0x1a06 AcceptCharset Atom = 0x1a0e Accesskey Atom = 0x2c09 Acronym ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/html/atom/atom.go
vendor/golang.org/x/net/html/atom/atom.go
// Copyright 2012 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 atom provides integer codes (also known as atoms) for a fixed set of // frequently occurring HTML strings: tag names and attribute keys such as "p" /...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/context/go19.go
vendor/golang.org/x/net/context/go19.go
// 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. //go:build go1.9 package context import "context" // standard library's context, as of Go 1.7 // A Context carries a deadline, a cancelation signal, and othe...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/context/pre_go17.go
vendor/golang.org/x/net/context/pre_go17.go
// Copyright 2014 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. //go:build !go1.7 package context import ( "errors" "fmt" "sync" "time" ) // An emptyCtx is never canceled, has no values, and has no deadline. It is not...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/context/pre_go19.go
vendor/golang.org/x/net/context/pre_go19.go
// Copyright 2014 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. //go:build !go1.9 package context import "time" // A Context carries a deadline, a cancelation signal, and other values across // API boundaries. // // Conte...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/context/context.go
vendor/golang.org/x/net/context/context.go
// Copyright 2014 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 context defines the Context type, which carries deadlines, // cancelation signals, and other request-scoped values across API boundaries // and betwe...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/context/go17.go
vendor/golang.org/x/net/context/go17.go
// Copyright 2016 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. //go:build go1.7 package context import ( "context" // standard library's context, as of Go 1.7 "time" ) var ( todo = context.TODO() background = c...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/http/httpguts/guts.go
vendor/golang.org/x/net/http/httpguts/guts.go
// Copyright 2018 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 httpguts provides functions implementing various details // of the HTTP specification. // // This package is shared by the standard library (which ve...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/http/httpguts/httplex.go
vendor/golang.org/x/net/http/httpguts/httplex.go
// Copyright 2016 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 httpguts import ( "net" "strings" "unicode/utf8" "golang.org/x/net/idna" ) var isTokenTable = [256]bool{ '!': true, '#': true, '$': true, ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/net/http/httpproxy/proxy.go
vendor/golang.org/x/net/http/httpproxy/proxy.go
// 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. // Package httpproxy provides support for HTTP proxy determination // based on environment variables, as provided by net/http's // ProxyFromEnvironment function...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/term_plan9.go
vendor/golang.org/x/term/term_plan9.go
// Copyright 2019 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 term import ( "fmt" "runtime" "golang.org/x/sys/plan9" ) type state struct{} func isTerminal(fd int) bool { path, err := plan9.Fd2path(fd) if e...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/term_windows.go
vendor/golang.org/x/term/term_windows.go
// Copyright 2019 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 term import ( "os" "golang.org/x/sys/windows" ) type state struct { mode uint32 } func isTerminal(fd int) bool { var st uint32 err := windows.G...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/term_unix_other.go
vendor/golang.org/x/term/term_unix_other.go
// Copyright 2021 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. //go:build aix || linux || solaris || zos package term import "golang.org/x/sys/unix" const ioctlReadTermios = unix.TCGETS const ioctlWriteTermios = unix.TCS...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/term_unsupported.go
vendor/golang.org/x/term/term_unsupported.go
// Copyright 2019 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. //go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !zos && !windows && !solaris && !plan9 package term import ( "fmt" ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/terminal.go
vendor/golang.org/x/term/terminal.go
// Copyright 2011 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 term import ( "bytes" "io" "runtime" "strconv" "sync" "unicode/utf8" ) // EscapeCodes contains escape sequences that can be written to the termi...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/term.go
vendor/golang.org/x/term/term.go
// Copyright 2019 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 term provides support functions for dealing with terminals, as // commonly found on UNIX systems. // // Putting a terminal into raw mode is the most ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/term_unix_bsd.go
vendor/golang.org/x/term/term_unix_bsd.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. //go:build darwin || dragonfly || freebsd || netbsd || openbsd package term import "golang.org/x/sys/unix" const ioctlReadTermios = unix.TIOCGETA const ioctl...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/term/term_unix.go
vendor/golang.org/x/term/term_unix.go
// Copyright 2019 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. //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos package term import ( "golang.org/x/sys/unix" ) type state ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/mod/semver/semver.go
vendor/golang.org/x/mod/semver/semver.go
// Copyright 2018 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 semver implements comparison of semantic version strings. // In this package, semantic version strings must begin with a leading "v", // as in "v1.0....
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/encoding.go
vendor/golang.org/x/text/encoding/encoding.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 encoding defines an interface for character encodings, such as Shift // JIS and Windows 1252, that can convert to and from UTF-8. // // Encoding impl...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/unicode/unicode.go
vendor/golang.org/x/text/encoding/unicode/unicode.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 unicode provides Unicode encodings such as UTF-16. package unicode // import "golang.org/x/text/encoding/unicode" import ( "bytes" "errors" "unic...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/unicode/override.go
vendor/golang.org/x/text/encoding/unicode/override.go
// Copyright 2015 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 unicode import ( "golang.org/x/text/transform" ) // BOMOverride returns a new decoder transformer that is identical to fallback, // except that the p...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go
vendor/golang.org/x/text/encoding/traditionalchinese/tables.go
// generated by go run maketables.go; DO NOT EDIT // Package traditionalchinese provides Traditional Chinese encodings such as Big5. package traditionalchinese // import "golang.org/x/text/encoding/traditionalchinese" // decode is the decoding table from Big5 code to Unicode. // It is defined at http://encoding.spec....
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go
vendor/golang.org/x/text/encoding/traditionalchinese/big5.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 traditionalchinese import ( "unicode/utf8" "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal" "golang.org/x/text/encoding/internal...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/htmlindex/map.go
vendor/golang.org/x/text/encoding/htmlindex/map.go
// Copyright 2015 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 htmlindex import ( "golang.org/x/text/encoding" "golang.org/x/text/encoding/charmap" "golang.org/x/text/encoding/internal/identifier" "golang.org/x...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/htmlindex/tables.go
vendor/golang.org/x/text/encoding/htmlindex/tables.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. package htmlindex type htmlEncoding byte const ( utf8 htmlEncoding = iota ibm866 iso8859_2 iso8859_3 iso8859_4 iso8859_5 iso8859_6 iso8859_7 iso8859_8 iso8859_8I iso8859_10 iso8859_13 iso8859_14 iso8859_15 iso8859_16 koi8r ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go
vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go
// Copyright 2015 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. //go:generate go run gen.go // Package htmlindex maps character set encoding names to Encodings as // recommended by the W3C for use in HTML 5. See http://www....
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go
vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.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 simplifiedchinese import ( "unicode/utf8" "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal" "golang.org/x/text/encoding/internal/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go
vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go
// generated by go run maketables.go; DO NOT EDIT // Package simplifiedchinese provides Simplified Chinese encodings such as GBK. package simplifiedchinese // import "golang.org/x/text/encoding/simplifiedchinese" // gb18030 is the table from http://encoding.spec.whatwg.org/index-gb18030.txt var gb18030 = [...][2]uint...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go
vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.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 simplifiedchinese import ( "unicode/utf8" "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal" "golang.org/x/text/encoding/internal/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go
vendor/golang.org/x/text/encoding/simplifiedchinese/all.go
// Copyright 2015 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 simplifiedchinese import ( "golang.org/x/text/encoding" ) // All is a list of all defined encodings in this package. var All = []encoding.Encoding{GB...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/internal/internal.go
vendor/golang.org/x/text/encoding/internal/internal.go
// Copyright 2015 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 internal contains code that is shared among encoding implementations. package internal import ( "golang.org/x/text/encoding" "golang.org/x/text/en...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/internal/identifier/mib.go
vendor/golang.org/x/text/encoding/internal/identifier/mib.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. package identifier const ( // ASCII is the MIB identifier with IANA name US-ASCII (MIME: US-ASCII). // // ANSI X3.4-1986 // Reference: RFC2046 ASCII MIB = 3 // ISOLatin1 is the MIB identifier with IANA name ISO_8859-1:1987 (MIME: ISO...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go
vendor/golang.org/x/text/encoding/internal/identifier/identifier.go
// Copyright 2015 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. //go:generate go run gen.go // Package identifier defines the contract between implementations of Encoding // and Index by defining identifiers that uniquely i...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/japanese/eucjp.go
vendor/golang.org/x/text/encoding/japanese/eucjp.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 japanese import ( "unicode/utf8" "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal" "golang.org/x/text/encoding/internal/identifie...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go
vendor/golang.org/x/text/encoding/japanese/iso2022jp.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 japanese import ( "unicode/utf8" "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal" "golang.org/x/text/encoding/internal/identifie...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/japanese/tables.go
vendor/golang.org/x/text/encoding/japanese/tables.go
// generated by go run maketables.go; DO NOT EDIT // Package japanese provides Japanese encodings such as EUC-JP and Shift JIS. package japanese // import "golang.org/x/text/encoding/japanese" // jis0208Decode is the decoding table from JIS 0208 code to Unicode. // It is defined at http://encoding.spec.whatwg.org/ind...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/japanese/shiftjis.go
vendor/golang.org/x/text/encoding/japanese/shiftjis.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 japanese import ( "unicode/utf8" "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal" "golang.org/x/text/encoding/internal/identifie...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/japanese/all.go
vendor/golang.org/x/text/encoding/japanese/all.go
// Copyright 2015 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 japanese import ( "golang.org/x/text/encoding" ) // All is a list of all defined encodings in this package. var All = []encoding.Encoding{EUCJP, ISO2...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/korean/tables.go
vendor/golang.org/x/text/encoding/korean/tables.go
// generated by go run maketables.go; DO NOT EDIT // Package korean provides Korean encodings such as EUC-KR. package korean // import "golang.org/x/text/encoding/korean" // decode is the decoding table from EUC-KR code to Unicode. // It is defined at http://encoding.spec.whatwg.org/index-euc-kr.txt var decode = [......
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/korean/euckr.go
vendor/golang.org/x/text/encoding/korean/euckr.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 korean import ( "unicode/utf8" "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal" "golang.org/x/text/encoding/internal/identifier"...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/charmap/charmap.go
vendor/golang.org/x/text/encoding/charmap/charmap.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. //go:generate go run maketables.go // Package charmap provides simple character encodings such as IBM Code Page 437 // and Windows 1252. package charmap // imp...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/encoding/charmap/tables.go
vendor/golang.org/x/text/encoding/charmap/tables.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. package charmap import ( "golang.org/x/text/encoding" "golang.org/x/text/encoding/internal/identifier" ) // CodePage037 is the IBM Code Page 037 encoding. var CodePage037 *Charmap = &codePage037 var codePage037 = Charmap{ name: ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/trieval.go
vendor/golang.org/x/text/width/trieval.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. package width // elem is an entry of the width trie. The high byte is used to encode the type // of the rune. The low byte is used to store the index to a mapping entry in // the inverseData array. type elem uint16 const ( tagNeutral elem...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/tables15.0.0.go
vendor/golang.org/x/text/width/tables15.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.21 package width // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "15.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and // the widt...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/tables13.0.0.go
vendor/golang.org/x/text/width/tables13.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.16 && !go1.21 package width // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "13.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/width.go
vendor/golang.org/x/text/width/width.go
// Copyright 2015 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. //go:generate stringer -type=Kind //go:generate go run gen.go gen_common.go gen_trieval.go // Package width provides functionality for handling different width...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/kind_string.go
vendor/golang.org/x/text/width/kind_string.go
// Code generated by "stringer -type=Kind"; DO NOT EDIT. package width import "strconv" func _() { // An "invalid array index" compiler error signifies that the constant values have changed. // Re-run the stringer command to generate them again. var x [1]struct{} _ = x[Neutral-0] _ = x[EastAsianAmbiguous-1] _ ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/tables10.0.0.go
vendor/golang.org/x/text/width/tables10.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.10 && !go1.13 package width // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "10.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/transform.go
vendor/golang.org/x/text/width/transform.go
// Copyright 2015 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 width import ( "unicode/utf8" "golang.org/x/text/transform" ) type foldTransform struct { transform.NopResetter } func (foldTransform) Span(src [...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/tables9.0.0.go
vendor/golang.org/x/text/width/tables9.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build !go1.10 package width // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "9.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and // the widt...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/tables12.0.0.go
vendor/golang.org/x/text/width/tables12.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.14 && !go1.16 package width // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "12.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/width/tables11.0.0.go
vendor/golang.org/x/text/width/tables11.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.13 && !go1.14 package width // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "11.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/cases.go
vendor/golang.org/x/text/cases/cases.go
// Copyright 2014 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. //go:generate go run gen.go gen_trieval.go // Package cases provides general and language-specific case mappers. package cases // import "golang.org/x/text/cas...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/fold.go
vendor/golang.org/x/text/cases/fold.go
// Copyright 2016 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 cases import "golang.org/x/text/transform" type caseFolder struct{ transform.NopResetter } // caseFolder implements the Transformer interface for doi...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/trieval.go
vendor/golang.org/x/text/cases/trieval.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. package cases // This file contains definitions for interpreting the trie value of the case // trie generated by "go run gen*.go". It is shared by both the generator // program and the resultant package. Sharing is achieved by the generator...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/tables15.0.0.go
vendor/golang.org/x/text/cases/tables15.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.21 package cases // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "15.0.0" var xorData string = "" + // Size: 213 bytes "\x00\x06\x07\x00\x01?\x00\x0f\x03\x...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/map.go
vendor/golang.org/x/text/cases/map.go
// Copyright 2014 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 cases // This file contains the definitions of case mappings for all supported // languages. The rules for the language-specific tailorings were taken ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/tables13.0.0.go
vendor/golang.org/x/text/cases/tables13.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.16 && !go1.21 package cases // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "13.0.0" var xorData string = "" + // Size: 192 bytes "\x00\x06\x07\x00\x01?\x0...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/tables10.0.0.go
vendor/golang.org/x/text/cases/tables10.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.10 && !go1.13 package cases // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "10.0.0" var xorData string = "" + // Size: 185 bytes "\x00\x06\x07\x00\x01?\x0...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/icu.go
vendor/golang.org/x/text/cases/icu.go
// Copyright 2016 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. //go:build icu package cases // Ideally these functions would be defined in a test file, but go test doesn't // allow CGO in tests. The build tag should ensur...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/tables9.0.0.go
vendor/golang.org/x/text/cases/tables9.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build !go1.10 package cases // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "9.0.0" var xorData string = "" + // Size: 185 bytes "\x00\x06\x07\x00\x01?\x00\x0f\x03\x...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/context.go
vendor/golang.org/x/text/cases/context.go
// Copyright 2014 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 cases import "golang.org/x/text/transform" // A context is used for iterating over source bytes, fetching case info and // writing to a destination bu...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/tables12.0.0.go
vendor/golang.org/x/text/cases/tables12.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.14 && !go1.16 package cases // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "12.0.0" var xorData string = "" + // Size: 192 bytes "\x00\x06\x07\x00\x01?\x0...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/info.go
vendor/golang.org/x/text/cases/info.go
// Copyright 2015 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 cases func (c info) cccVal() info { if c&exceptionBit != 0 { return info(exceptions[c>>exceptionShift]) & cccMask } return c & cccMask } func (c ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/cases/tables11.0.0.go
vendor/golang.org/x/text/cases/tables11.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.13 && !go1.14 package cases // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "11.0.0" var xorData string = "" + // Size: 188 bytes "\x00\x06\x07\x00\x01?\x0...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/nickname.go
vendor/golang.org/x/text/secure/precis/nickname.go
// Copyright 2015 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 precis import ( "unicode" "unicode/utf8" "golang.org/x/text/transform" ) type nickAdditionalMapping struct { // TODO: This transformer needs to b...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/profile.go
vendor/golang.org/x/text/secure/precis/profile.go
// Copyright 2015 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 precis import ( "bytes" "errors" "unicode/utf8" "golang.org/x/text/cases" "golang.org/x/text/language" "golang.org/x/text/runes" "golang.org/x/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/profiles.go
vendor/golang.org/x/text/secure/precis/profiles.go
// Copyright 2015 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 precis import ( "unicode" "golang.org/x/text/runes" "golang.org/x/text/transform" "golang.org/x/text/unicode/norm" ) var ( // Implements the Nic...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/trieval.go
vendor/golang.org/x/text/secure/precis/trieval.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. package precis // entry is the entry of a trie table // 7..6 property (unassigned, disallowed, maybe, valid) // 5..0 category type entry uint8 const ( propShift = 6 propMask = 0xc0 catMask = 0x3f ) func (e entry) property() prop...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/class.go
vendor/golang.org/x/text/secure/precis/class.go
// Copyright 2015 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 precis import ( "unicode/utf8" ) // TODO: Add contextual character rules from Appendix A of RFC5892. // A class is a set of characters that match ce...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/tables15.0.0.go
vendor/golang.org/x/text/secure/precis/tables15.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.21 package precis // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "15.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and // the wid...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/tables13.0.0.go
vendor/golang.org/x/text/secure/precis/tables13.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.16 && !go1.21 package precis // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "13.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/tables10.0.0.go
vendor/golang.org/x/text/secure/precis/tables10.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.10 && !go1.13 package precis // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "10.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/tables9.0.0.go
vendor/golang.org/x/text/secure/precis/tables9.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build !go1.10 package precis // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "9.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and // the wid...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/options.go
vendor/golang.org/x/text/secure/precis/options.go
// Copyright 2015 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 precis import ( "golang.org/x/text/cases" "golang.org/x/text/language" "golang.org/x/text/runes" "golang.org/x/text/transform" "golang.org/x/text/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/context.go
vendor/golang.org/x/text/secure/precis/context.go
// Copyright 2016 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 precis import "errors" // This file contains tables and code related to context rules. type catBitmap uint16 const ( // These bits, once set depend...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/doc.go
vendor/golang.org/x/text/secure/precis/doc.go
// Copyright 2015 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 precis contains types and functions for the preparation, // enforcement, and comparison of internationalized strings ("PRECIS") as // defined in RFC ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/tables12.0.0.go
vendor/golang.org/x/text/secure/precis/tables12.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.14 && !go1.16 package precis // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "12.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/transformer.go
vendor/golang.org/x/text/secure/precis/transformer.go
// Copyright 2015 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 precis import "golang.org/x/text/transform" // Transformer implements the transform.Transformer interface. type Transformer struct { t transform.Tran...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/precis/tables11.0.0.go
vendor/golang.org/x/text/secure/precis/tables11.0.0.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. //go:build go1.13 && !go1.14 package precis // UnicodeVersion is the Unicode version from which the tables in this package are derived. const UnicodeVersion = "11.0.0" // lookup returns the trie value for the first UTF-8 encoding in s and...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
true
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go
vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go
// Copyright 2016 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. //go:build go1.10 package bidirule func (t *Transformer) isFinal() bool { return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/bidirule/bidirule.go
vendor/golang.org/x/text/secure/bidirule/bidirule.go
// Copyright 2016 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 bidirule implements the Bidi Rule defined by RFC 5893. // // This package is under development. The API may change without notice and // without pres...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go
vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go
// Copyright 2016 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. //go:build !go1.10 package bidirule func (t *Transformer) isFinal() bool { if !t.isRTL() { return true } return t.state == ruleLTRFinal || t.state == rul...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false