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
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/errors.go
vendor/github.com/onsi/ginkgo/v2/types/errors.go
package types import ( "fmt" "reflect" "strings" "github.com/onsi/ginkgo/v2/formatter" ) type GinkgoError struct { Heading string Message string DocLink string CodeLocation CodeLocation } func (g GinkgoError) Error() string { out := formatter.F("{{bold}}{{red}}%s{{/}}\n", g.Heading) if (g.C...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/config.go
vendor/github.com/onsi/ginkgo/v2/types/config.go
/* Ginkgo accepts a number of configuration options. These are documented [here](http://onsi.github.io/ginkgo/#the-ginkgo-cli) */ package types import ( "flag" "os" "path/filepath" "runtime" "strconv" "strings" "time" ) // Configuration controlling how an individual test suite is run type SuiteConfig struct {...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
true
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/code_location.go
vendor/github.com/onsi/ginkgo/v2/types/code_location.go
package types import ( "fmt" "os" "regexp" "runtime" "runtime/debug" "strings" "sync" ) type CodeLocation struct { FileName string `json:",omitempty"` LineNumber int `json:",omitempty"` FullStackTrace string `json:",omitempty"` CustomMessage string `json:",omitempty"` } func (codeLocation Co...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/deprecated_types.go
vendor/github.com/onsi/ginkgo/v2/types/deprecated_types.go
package types import ( "strconv" "time" ) /* A set of deprecations to make the transition from v1 to v2 easier for users who have written custom reporters. */ type SuiteSummary = DeprecatedSuiteSummary type SetupSummary = DeprecatedSetupSummary type SpecSummary = DeprecatedSpecSummary type SpecMeasurement = Depre...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/enum_support.go
vendor/github.com/onsi/ginkgo/v2/types/enum_support.go
package types import "encoding/json" type EnumSupport struct { toString map[uint]string toEnum map[string]uint maxEnum uint } func NewEnumSupport(toString map[uint]string) EnumSupport { toEnum, maxEnum := map[string]uint{}, uint(0) for k, v := range toString { toEnum[v] = k if maxEnum < k { maxEnum = ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/file_filter.go
vendor/github.com/onsi/ginkgo/v2/types/file_filter.go
package types import ( "regexp" "strconv" "strings" ) func ParseFileFilters(filters []string) (FileFilters, error) { ffs := FileFilters{} for _, filter := range filters { ff := FileFilter{} if filter == "" { return nil, GinkgoErrors.InvalidFileFilter(filter) } components := strings.Split(filter, ":") ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/version.go
vendor/github.com/onsi/ginkgo/v2/types/version.go
package types const VERSION = "2.22.0"
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/deprecation_support.go
vendor/github.com/onsi/ginkgo/v2/types/deprecation_support.go
package types import ( "os" "strconv" "strings" "sync" "unicode" "github.com/onsi/ginkgo/v2/formatter" ) type Deprecation struct { Message string DocLink string Version string } type deprecations struct{} var Deprecations = deprecations{} func (d deprecations) CustomReporter() Deprecation { return Depre...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/types/label_filter.go
vendor/github.com/onsi/ginkgo/v2/types/label_filter.go
package types import ( "fmt" "regexp" "strings" ) var DEBUG_LABEL_FILTER_PARSING = false type LabelFilter func([]string) bool func matchLabelAction(label string) LabelFilter { expected := strings.ToLower(label) return func(labels []string) bool { for i := range labels { if strings.ToLower(labels[i]) == ex...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/reporters/json_report.go
vendor/github.com/onsi/ginkgo/v2/reporters/json_report.go
package reporters import ( "encoding/json" "fmt" "os" "path" "github.com/onsi/ginkgo/v2/types" ) // GenerateJSONReport produces a JSON-formatted report at the passed in destination func GenerateJSONReport(report types.Report, destination string) error { if err := os.MkdirAll(path.Dir(destination), 0770); err !...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/reporters/deprecated_reporter.go
vendor/github.com/onsi/ginkgo/v2/reporters/deprecated_reporter.go
package reporters import ( "github.com/onsi/ginkgo/v2/config" "github.com/onsi/ginkgo/v2/types" ) // Deprecated: DeprecatedReporter was how Ginkgo V1 provided support for CustomReporters // this has been removed in V2. // Please read the documentation at: // https://onsi.github.io/ginkgo/MIGRATING_TO_V2#removed-cus...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/reporters/reporter.go
vendor/github.com/onsi/ginkgo/v2/reporters/reporter.go
package reporters import ( "github.com/onsi/ginkgo/v2/types" ) type Reporter interface { SuiteWillBegin(report types.Report) WillRun(report types.SpecReport) DidRun(report types.SpecReport) SuiteDidEnd(report types.Report) //Timeline emission EmitFailure(state types.SpecState, failure types.Failure) EmitProg...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/reporters/default_reporter.go
vendor/github.com/onsi/ginkgo/v2/reporters/default_reporter.go
/* Ginkgo's Default Reporter A number of command line flags are available to tweak Ginkgo's default output. These are documented [here](http://onsi.github.io/ginkgo/#running_tests) */ package reporters import ( "fmt" "io" "runtime" "strings" "sync" "time" "github.com/onsi/ginkgo/v2/formatter" "github.com/on...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/reporters/junit_report.go
vendor/github.com/onsi/ginkgo/v2/reporters/junit_report.go
/* JUnit XML Reporter for Ginkgo For usage instructions: http://onsi.github.io/ginkgo/#generating_junit_xml_output The schema used for the generated JUnit xml file was adapted from https://llg.cubic.org/docs/junit/ */ package reporters import ( "encoding/xml" "fmt" "os" "path" "regexp" "strings" "github.c...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/reporters/teamcity_report.go
vendor/github.com/onsi/ginkgo/v2/reporters/teamcity_report.go
/* TeamCity Reporter for Ginkgo Makes use of TeamCity's support for Service Messages http://confluence.jetbrains.com/display/TCD7/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-ReportingTests */ package reporters import ( "fmt" "os" "path" "strings" "github.com/onsi/ginkgo/v2/types"...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/tree.go
vendor/github.com/onsi/ginkgo/v2/internal/tree.go
package internal import "github.com/onsi/ginkgo/v2/types" type TreeNode struct { Node Node Parent *TreeNode Children TreeNodes } func (tn *TreeNode) AppendChild(child *TreeNode) { tn.Children = append(tn.Children, child) child.Parent = tn } func (tn *TreeNode) AncestorNodeChain() Nodes { if tn.Parent ==...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/progress_report.go
vendor/github.com/onsi/ginkgo/v2/internal/progress_report.go
package internal import ( "bufio" "bytes" "context" "fmt" "io" "os" "os/signal" "path/filepath" "runtime" "strconv" "strings" "time" "github.com/onsi/ginkgo/v2/types" ) var _SOURCE_CACHE = map[string][]string{} type ProgressSignalRegistrar func(func()) context.CancelFunc func RegisterForProgressSignal...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/progress_report_bsd.go
vendor/github.com/onsi/ginkgo/v2/internal/progress_report_bsd.go
//go:build freebsd || openbsd || netbsd || darwin || dragonfly // +build freebsd openbsd netbsd darwin dragonfly package internal import ( "os" "syscall" ) var PROGRESS_SIGNALS = []os.Signal{syscall.SIGINFO, syscall.SIGUSR1}
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/failer.go
vendor/github.com/onsi/ginkgo/v2/internal/failer.go
package internal import ( "fmt" "sync" "github.com/onsi/ginkgo/v2/types" ) type Failer struct { lock *sync.Mutex failure types.Failure state types.SpecState } func NewFailer() *Failer { return &Failer{ lock: &sync.Mutex{}, state: types.SpecStatePassed, } } func (f *Failer) GetState() types.SpecSt...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/report_entry.go
vendor/github.com/onsi/ginkgo/v2/internal/report_entry.go
package internal import ( "time" "github.com/onsi/ginkgo/v2/types" ) type ReportEntry = types.ReportEntry func NewReportEntry(name string, cl types.CodeLocation, args ...interface{}) (ReportEntry, error) { out := ReportEntry{ Visibility: types.ReportEntryVisibilityAlways, Name: name, Location: cl, ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/node.go
vendor/github.com/onsi/ginkgo/v2/internal/node.go
package internal import ( "context" "fmt" "reflect" "sort" "sync" "time" "github.com/onsi/ginkgo/v2/types" ) var _global_node_id_counter = uint(0) var _global_id_mutex = &sync.Mutex{} func UniqueNodeID() uint { // There's a reace in the internal integration tests if we don't make // accessing _global_node_...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/group.go
vendor/github.com/onsi/ginkgo/v2/internal/group.go
package internal import ( "fmt" "time" "github.com/onsi/ginkgo/v2/types" ) type runOncePair struct { //nodeId should only run once... nodeID uint nodeType types.NodeType //...for specs in a hierarchy that includes this context containerID uint } func (pair runOncePair) isZero() bool { return pair.nodeID ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/spec.go
vendor/github.com/onsi/ginkgo/v2/internal/spec.go
package internal import ( "strings" "time" "github.com/onsi/ginkgo/v2/types" ) type Spec struct { Nodes Nodes Skip bool } func (s Spec) SubjectID() uint { return s.Nodes.FirstNodeWithType(types.NodeTypeIt).ID } func (s Spec) Text() string { texts := []string{} for i := range s.Nodes { if s.Nodes[i].Text...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/progress_report_wasm.go
vendor/github.com/onsi/ginkgo/v2/internal/progress_report_wasm.go
//go:build wasm package internal import ( "os" "syscall" ) var PROGRESS_SIGNALS = []os.Signal{syscall.SIGUSR1}
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/ordering.go
vendor/github.com/onsi/ginkgo/v2/internal/ordering.go
package internal import ( "math/rand" "sort" "github.com/onsi/ginkgo/v2/types" ) type SortableSpecs struct { Specs Specs Indexes []int } func NewSortableSpecs(specs Specs) *SortableSpecs { indexes := make([]int, len(specs)) for i := range specs { indexes[i] = i } return &SortableSpecs{ Specs: specs...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_wasm.go
vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_wasm.go
//go:build wasm package internal func NewOutputInterceptor() OutputInterceptor { return &NoopOutputInterceptor{} }
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/writer.go
vendor/github.com/onsi/ginkgo/v2/internal/writer.go
package internal import ( "bytes" "fmt" "io" "sync" "github.com/go-logr/logr" "github.com/go-logr/logr/funcr" ) type WriterMode uint const ( WriterModeStreamAndBuffer WriterMode = iota WriterModeBufferOnly ) type WriterInterface interface { io.Writer Truncate() Bytes() []byte Len() int } // Writer im...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/counter.go
vendor/github.com/onsi/ginkgo/v2/internal/counter.go
package internal func MakeIncrementingIndexCounter() func() (int, error) { idx := -1 return func() (int, error) { idx += 1 return idx, nil } }
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor.go
vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor.go
package internal import ( "bytes" "io" "os" "time" ) const BAILOUT_TIME = 1 * time.Second const BAILOUT_MESSAGE = `Ginkgo detected an issue while intercepting output. When running in parallel, Ginkgo captures stdout and stderr output and attaches it to the running spec. It looks like that process is getting stu...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/progress_report_unix.go
vendor/github.com/onsi/ginkgo/v2/internal/progress_report_unix.go
//go:build linux || solaris // +build linux solaris package internal import ( "os" "syscall" ) var PROGRESS_SIGNALS = []os.Signal{syscall.SIGUSR1}
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/progress_reporter_manager.go
vendor/github.com/onsi/ginkgo/v2/internal/progress_reporter_manager.go
package internal import ( "context" "sort" "strings" "sync" "github.com/onsi/ginkgo/v2/types" ) type ProgressReporterManager struct { lock *sync.Mutex progressReporters map[int]func() string prCounter int } func NewProgressReporterManager() *ProgressReporterManager { return &ProgressRe...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/spec_context.go
vendor/github.com/onsi/ginkgo/v2/internal/spec_context.go
package internal import ( "context" "github.com/onsi/ginkgo/v2/types" ) type SpecContext interface { context.Context SpecReport() types.SpecReport AttachProgressReporter(func() string) func() } type specContext struct { context.Context *ProgressReporterManager cancel context.CancelCauseFunc suite *Suite...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_win.go
vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_win.go
// +build windows package internal func NewOutputInterceptor() OutputInterceptor { return NewOSGlobalReassigningOutputInterceptor() }
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/focus.go
vendor/github.com/onsi/ginkgo/v2/internal/focus.go
package internal import ( "regexp" "strings" "github.com/onsi/ginkgo/v2/types" ) /* If a container marked as focus has a descendant that is also marked as focus, Ginkgo's policy is to unmark the container's focus. This gives developers a more intuitive experience when debugging specs. It is common to focus a con...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/suite.go
vendor/github.com/onsi/ginkgo/v2/internal/suite.go
package internal import ( "fmt" "sync" "time" "github.com/onsi/ginkgo/v2/internal/interrupt_handler" "github.com/onsi/ginkgo/v2/internal/parallel_support" "github.com/onsi/ginkgo/v2/reporters" "github.com/onsi/ginkgo/v2/types" "golang.org/x/net/context" ) type Phase uint const ( PhaseBuildTopLevel Phase = ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
true
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/progress_report_win.go
vendor/github.com/onsi/ginkgo/v2/internal/progress_report_win.go
//go:build windows // +build windows package internal import "os" var PROGRESS_SIGNALS = []os.Signal{}
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_unix.go
vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_unix.go
//go:build freebsd || openbsd || netbsd || dragonfly || darwin || linux || solaris // +build freebsd openbsd netbsd dragonfly darwin linux solaris package internal import ( "os" "golang.org/x/sys/unix" ) func NewOutputInterceptor() OutputInterceptor { return &genericOutputInterceptor{ interceptedContent: make(...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/interrupt_handler.go
vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/interrupt_handler.go
package interrupt_handler import ( "os" "os/signal" "sync" "syscall" "time" "github.com/onsi/ginkgo/v2/internal/parallel_support" ) var ABORT_POLLING_INTERVAL = 500 * time.Millisecond type InterruptCause uint const ( InterruptCauseInvalid InterruptCause = iota InterruptCauseSignal InterruptCauseAbortByOth...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/sigquit_swallower_windows.go
vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/sigquit_swallower_windows.go
//go:build windows // +build windows package interrupt_handler func SwallowSigQuit() { //noop }
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/sigquit_swallower_unix.go
vendor/github.com/onsi/ginkgo/v2/internal/interrupt_handler/sigquit_swallower_unix.go
//go:build freebsd || openbsd || netbsd || dragonfly || darwin || linux || solaris // +build freebsd openbsd netbsd dragonfly darwin linux solaris package interrupt_handler import ( "os" "os/signal" "syscall" ) func SwallowSigQuit() { c := make(chan os.Signal, 1024) signal.Notify(c, syscall.SIGQUIT) }
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/global/init.go
vendor/github.com/onsi/ginkgo/v2/internal/global/init.go
package global import ( "github.com/onsi/ginkgo/v2/internal" ) var Suite *internal.Suite var Failer *internal.Failer var backupSuite *internal.Suite func init() { InitializeGlobals() } func InitializeGlobals() { Failer = internal.NewFailer() Suite = internal.NewSuite() } func PushClone() error { var err error...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/http_client.go
vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/http_client.go
package parallel_support import ( "bytes" "encoding/json" "fmt" "io" "net/http" "time" "github.com/onsi/ginkgo/v2/types" ) type httpClient struct { serverHost string } func newHttpClient(serverHost string) *httpClient { return &httpClient{ serverHost: serverHost, } } func (client *httpClient) Connect()...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/http_server.go
vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/http_server.go
/* The remote package provides the pieces to allow Ginkgo test suites to report to remote listeners. This is used, primarily, to enable streaming parallel test output but has, in principal, broader applications (e.g. streaming test output to a browser). */ package parallel_support import ( "encoding/json" "io" "...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/rpc_client.go
vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/rpc_client.go
package parallel_support import ( "net/rpc" "time" "github.com/onsi/ginkgo/v2/types" ) type rpcClient struct { serverHost string client *rpc.Client } func newRPCClient(serverHost string) *rpcClient { return &rpcClient{ serverHost: serverHost, } } func (client *rpcClient) Connect() bool { var err erro...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/client_server.go
vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/client_server.go
package parallel_support import ( "fmt" "io" "os" "time" "github.com/onsi/ginkgo/v2/reporters" "github.com/onsi/ginkgo/v2/types" ) type BeforeSuiteState struct { Data []byte State types.SpecState } type ParallelIndexCounter struct { Index int } var ErrorGone = fmt.Errorf("gone") var ErrorFailed = fmt.Err...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/server_handler.go
vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/server_handler.go
package parallel_support import ( "io" "os" "sync" "github.com/onsi/ginkgo/v2/reporters" "github.com/onsi/ginkgo/v2/types" ) type Void struct{} var voidReceiver *Void = &Void{} var voidSender Void // ServerHandler is an RPC-compatible handler that is shared between the http server and the rpc server. // It ha...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/rpc_server.go
vendor/github.com/onsi/ginkgo/v2/internal/parallel_support/rpc_server.go
/* The remote package provides the pieces to allow Ginkgo test suites to report to remote listeners. This is used, primarily, to enable streaming parallel test output but has, in principal, broader applications (e.g. streaming test output to a browser). */ package parallel_support import ( "io" "net" "net/http" ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/internal/testingtproxy/testing_t_proxy.go
vendor/github.com/onsi/ginkgo/v2/internal/testingtproxy/testing_t_proxy.go
package testingtproxy import ( "fmt" "io" "os" "github.com/onsi/ginkgo/v2/formatter" "github.com/onsi/ginkgo/v2/internal" "github.com/onsi/ginkgo/v2/reporters" "github.com/onsi/ginkgo/v2/types" ) type failFunc func(message string, callerSkip ...int) type skipFunc func(message string, callerSkip ...int) type c...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/v2/config/deprecated.go
vendor/github.com/onsi/ginkgo/v2/config/deprecated.go
package config // GinkgoConfigType has been deprecated and its equivalent now lives in // the types package. You can no longer access Ginkgo configuration from the config // package. Instead use the DSL's GinkgoConfiguration() function to get copies of the // current configuration // // GinkgoConfigType is still her...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/onsi/ginkgo/config/config.go
vendor/github.com/onsi/ginkgo/config/config.go
/* Ginkgo accepts a number of configuration options. These are documented [here](http://onsi.github.io/ginkgo/#the-ginkgo-cli) You can also learn more via ginkgo help or (I kid you not): go test -asdf */ package config import ( "flag" "time" "fmt" ) const VERSION = "1.16.5" type GinkgoConfigType struct { ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/tree.go
vendor/github.com/gabriel-vasile/mimetype/tree.go
package mimetype import ( "sync" "github.com/gabriel-vasile/mimetype/internal/magic" ) // mimetype stores the list of MIME types in a tree structure with // "application/octet-stream" at the root of the hierarchy. The hierarchy // approach minimizes the number of checks that need to be done on the input // and all...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/mime.go
vendor/github.com/gabriel-vasile/mimetype/mime.go
package mimetype import ( "mime" "github.com/gabriel-vasile/mimetype/internal/charset" "github.com/gabriel-vasile/mimetype/internal/magic" ) // MIME struct holds information about a file format: the string representation // of the MIME type, the extension and the parent file format. type MIME struct { mime ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/mimetype.go
vendor/github.com/gabriel-vasile/mimetype/mimetype.go
// Package mimetype uses magic number signatures to detect the MIME type of a file. // // File formats are stored in a hierarchy with application/octet-stream at its root. // For example, the hierarchy for HTML format is application/octet-stream -> // text/plain -> text/html. package mimetype import ( "io" "mime" "...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/charset/charset.go
vendor/github.com/gabriel-vasile/mimetype/internal/charset/charset.go
package charset import ( "bytes" "encoding/xml" "strings" "unicode/utf8" "golang.org/x/net/html" ) const ( F = 0 /* character never appears in text */ T = 1 /* character appears in plain ASCII text */ I = 2 /* character appears in ISO-8859 text */ X = 3 /* character appears in non-ISO extended ASCII (Mac, I...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/json/json.go
vendor/github.com/gabriel-vasile/mimetype/internal/json/json.go
// Copyright (c) 2009 The Go Authors. All rights reserved. // // 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 conditio...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/text.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/text.go
package magic import ( "bytes" "strings" "time" "github.com/gabriel-vasile/mimetype/internal/charset" "github.com/gabriel-vasile/mimetype/internal/json" ) var ( // HTML matches a Hypertext Markup Language file. HTML = markup( []byte("<!DOCTYPE HTML"), []byte("<HTML"), []byte("<HEAD"), []byte("<SCRIPT"...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/document.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/document.go
package magic import "bytes" var ( // Pdf matches a Portable Document Format file. // https://github.com/file/file/blob/11010cc805546a3e35597e67e1129a481aed40e8/magic/Magdir/pdf Pdf = prefix( // usual pdf signature []byte("%PDF-"), // new-line prefixed signature []byte("\012%PDF-"), // UTF-8 BOM prefixed...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ogg.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/ogg.go
package magic import ( "bytes" ) /* NOTE: In May 2003, two Internet RFCs were published relating to the format. The Ogg bitstream was defined in RFC 3533 (which is classified as 'informative') and its Internet content type (application/ogg) in RFC 3534 (which is, as of 2006, a proposed standard protocol). In ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ms_office.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/ms_office.go
package magic import ( "bytes" "encoding/binary" ) // Xlsx matches a Microsoft Excel 2007 file. func Xlsx(raw []byte, limit uint32) bool { return zipContains(raw, []byte("xl/"), true) } // Docx matches a Microsoft Word 2007 file. func Docx(raw []byte, limit uint32) bool { return zipContains(raw, []byte("word/"),...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/archive.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/archive.go
package magic import ( "bytes" "encoding/binary" ) var ( // SevenZ matches a 7z archive. SevenZ = prefix([]byte{0x37, 0x7A, 0xBC, 0xAF, 0x27, 0x1C}) // Gzip matches gzip files based on http://www.zlib.org/rfc-gzip.html#header-trailer. Gzip = prefix([]byte{0x1f, 0x8b}) // Fits matches an Flexible Image Transpor...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/image.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/image.go
package magic import "bytes" var ( // Png matches a Portable Network Graphics file. // https://www.w3.org/TR/PNG/ Png = prefix([]byte{0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A}) // Apng matches an Animated Portable Network Graphics file. // https://wiki.mozilla.org/APNG_Specification Apng = offset([]byte("...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/ftyp.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/ftyp.go
package magic import ( "bytes" ) var ( // AVIF matches an AV1 Image File Format still or animated. // Wikipedia page seems outdated listing image/avif-sequence for animations. // https://github.com/AOMediaCodec/av1-avif/issues/59 AVIF = ftyp([]byte("avif"), []byte("avis")) // ThreeGP matches a 3GPP file. Three...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/zip.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/zip.go
package magic import ( "bytes" "encoding/binary" ) var ( // Odt matches an OpenDocument Text file. Odt = offset([]byte("mimetypeapplication/vnd.oasis.opendocument.text"), 30) // Ott matches an OpenDocument Text Template file. Ott = offset([]byte("mimetypeapplication/vnd.oasis.opendocument.text-template"), 30) ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/database.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/database.go
package magic var ( // Sqlite matches an SQLite database file. Sqlite = prefix([]byte{ 0x53, 0x51, 0x4c, 0x69, 0x74, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x33, 0x00, }) // MsAccessAce matches Microsoft Access dababase file. MsAccessAce = offset([]byte("Standard ACE DB"), 4) // MsAccessMdb ma...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/video.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/video.go
package magic import ( "bytes" ) var ( // Flv matches a Flash video file. Flv = prefix([]byte("\x46\x4C\x56\x01")) // Asf matches an Advanced Systems Format file. Asf = prefix([]byte{ 0x30, 0x26, 0xB2, 0x75, 0x8E, 0x66, 0xCF, 0x11, 0xA6, 0xD9, 0x00, 0xAA, 0x00, 0x62, 0xCE, 0x6C, }) // Rmvb matches a RealMe...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/text_csv.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/text_csv.go
package magic import ( "bufio" "bytes" "encoding/csv" "errors" "io" "sync" ) // A bufio.Reader pool to alleviate problems with memory allocations. var readerPool = sync.Pool{ New: func() any { // Initiate with empty source reader. return bufio.NewReader(nil) }, } func newReader(r io.Reader) *bufio.Reader...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/font.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/font.go
package magic import ( "bytes" ) var ( // Woff matches a Web Open Font Format file. Woff = prefix([]byte("wOFF")) // Woff2 matches a Web Open Font Format version 2 file. Woff2 = prefix([]byte("wOF2")) // Otf matches an OpenType font file. Otf = prefix([]byte{0x4F, 0x54, 0x54, 0x4F, 0x00}) ) // Ttf matches a T...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/binary.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/binary.go
package magic import ( "bytes" "debug/macho" "encoding/binary" ) var ( // Lnk matches Microsoft lnk binary format. Lnk = prefix([]byte{0x4C, 0x00, 0x00, 0x00, 0x01, 0x14, 0x02, 0x00}) // Wasm matches a web assembly File Format file. Wasm = prefix([]byte{0x00, 0x61, 0x73, 0x6D}) // Exe matches a Windows/DOS ex...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/magic.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/magic.go
// Package magic holds the matching functions used to find MIME types. package magic import ( "bytes" "fmt" ) type ( // Detector receiveѕ the raw data of a file and returns whether the data // meets any conditions. The limit parameter is an upper limit to the number // of bytes received and is used to tell if th...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/geo.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/geo.go
package magic import ( "bytes" "encoding/binary" ) // Shp matches a shape format file. // https://www.esri.com/library/whitepapers/pdfs/shapefile.pdf func Shp(raw []byte, limit uint32) bool { if len(raw) < 112 { return false } if !(binary.BigEndian.Uint32(raw[0:4]) == 9994 && binary.BigEndian.Uint32(raw[4:8...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/gabriel-vasile/mimetype/internal/magic/audio.go
vendor/github.com/gabriel-vasile/mimetype/internal/magic/audio.go
package magic import ( "bytes" "encoding/binary" ) var ( // Flac matches a Free Lossless Audio Codec file. Flac = prefix([]byte("\x66\x4C\x61\x43\x00\x00\x00\x22")) // Midi matches a Musical Instrument Digital Interface file. Midi = prefix([]byte("\x4D\x54\x68\x64")) // Ape matches a Monkey's Audio file. Ape ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/cpuid.go
vendor/github.com/klauspost/cpuid/v2/cpuid.go
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file. // Package cpuid provides information about the CPU running the current program. // // CPU features are detected on startup, and kept for fast access through the life of the application. // Currently x86 / x64 (AMD64) as well as arm64 is s...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
true
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/os_other_arm64.go
vendor/github.com/klauspost/cpuid/v2/os_other_arm64.go
// Copyright (c) 2020 Klaus Post, released under MIT License. See LICENSE file. //go:build arm64 && !linux && !darwin // +build arm64,!linux,!darwin package cpuid import "runtime" func detectOS(c *CPUInfo) bool { c.PhysicalCores = runtime.NumCPU() // For now assuming 1 thread per core... c.ThreadsPerCore = 1 c....
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/detect_arm64.go
vendor/github.com/klauspost/cpuid/v2/detect_arm64.go
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file. //go:build arm64 && !gccgo && !noasm && !appengine // +build arm64,!gccgo,!noasm,!appengine package cpuid import "runtime" func getMidr() (midr uint64) func getProcFeatures() (procFeatures uint64) func getInstAttributes() (instAttrReg0,...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/os_safe_linux_arm64.go
vendor/github.com/klauspost/cpuid/v2/os_safe_linux_arm64.go
// Copyright (c) 2021 Klaus Post, released under MIT License. See LICENSE file. //go:build nounsafe // +build nounsafe package cpuid var hwcap uint
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/detect_ref.go
vendor/github.com/klauspost/cpuid/v2/detect_ref.go
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file. //go:build (!amd64 && !386 && !arm64) || gccgo || noasm || appengine // +build !amd64,!386,!arm64 gccgo noasm appengine package cpuid func initCPU() { cpuid = func(uint32) (a, b, c, d uint32) { return 0, 0, 0, 0 } cpuidex = func(x, y u...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/featureid_string.go
vendor/github.com/klauspost/cpuid/v2/featureid_string.go
// Code generated by "stringer -type=FeatureID,Vendor"; DO NOT EDIT. package cpuid 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[ADX-1] _ = x[AESNI-2] _ = x[A...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/detect_x86.go
vendor/github.com/klauspost/cpuid/v2/detect_x86.go
// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file. //go:build (386 && !gccgo && !noasm && !appengine) || (amd64 && !gccgo && !noasm && !appengine) // +build 386,!gccgo,!noasm,!appengine amd64,!gccgo,!noasm,!appengine package cpuid func asmCpuid(op uint32) (eax, ebx, ecx, edx uint32) func...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/os_unsafe_linux_arm64.go
vendor/github.com/klauspost/cpuid/v2/os_unsafe_linux_arm64.go
// Copyright (c) 2021 Klaus Post, released under MIT License. See LICENSE file. //go:build !nounsafe // +build !nounsafe package cpuid import _ "unsafe" // needed for go:linkname //go:linkname hwcap internal/cpu.HWCap var hwcap uint
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/os_darwin_arm64.go
vendor/github.com/klauspost/cpuid/v2/os_darwin_arm64.go
// Copyright (c) 2020 Klaus Post, released under MIT License. See LICENSE file. package cpuid import ( "runtime" "strings" "golang.org/x/sys/unix" ) func detectOS(c *CPUInfo) bool { if runtime.GOOS != "ios" { tryToFillCPUInfoFomSysctl(c) } // There are no hw.optional sysctl values for the below features on ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/klauspost/cpuid/v2/os_linux_arm64.go
vendor/github.com/klauspost/cpuid/v2/os_linux_arm64.go
// Copyright (c) 2020 Klaus Post, released under MIT License. See LICENSE file. // 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 located // here https://github.com/golang/sys/blob/master/LICENSE package cpuid ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/json.go
vendor/github.com/goccy/go-json/json.go
package json import ( "bytes" "context" "encoding/json" "github.com/goccy/go-json/internal/encoder" ) // Marshaler is the interface implemented by types that // can marshal themselves into valid JSON. type Marshaler interface { MarshalJSON() ([]byte, error) } // MarshalerContext is the interface implemented by...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/path.go
vendor/github.com/goccy/go-json/path.go
package json import ( "reflect" "github.com/goccy/go-json/internal/decoder" ) // CreatePath creates JSON Path. // // JSON Path rule // $ : root object or element. The JSON Path format must start with this operator, which refers to the outermost level of the JSON-formatted string. // . : child operator. You can...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/error.go
vendor/github.com/goccy/go-json/error.go
package json import ( "github.com/goccy/go-json/internal/errors" ) // Before Go 1.2, an InvalidUTF8Error was returned by Marshal when // attempting to encode a string value with invalid UTF-8 sequences. // As of Go 1.2, Marshal instead coerces the string to valid UTF-8 by // replacing invalid bytes with the Unicode ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/option.go
vendor/github.com/goccy/go-json/option.go
package json import ( "io" "github.com/goccy/go-json/internal/decoder" "github.com/goccy/go-json/internal/encoder" ) type EncodeOption = encoder.Option type EncodeOptionFunc func(*EncodeOption) // UnorderedMap doesn't sort when encoding map type. func UnorderedMap() EncodeOptionFunc { return func(opt *EncodeOpt...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/encode.go
vendor/github.com/goccy/go-json/encode.go
package json import ( "context" "io" "os" "unsafe" "github.com/goccy/go-json/internal/encoder" "github.com/goccy/go-json/internal/encoder/vm" "github.com/goccy/go-json/internal/encoder/vm_color" "github.com/goccy/go-json/internal/encoder/vm_color_indent" "github.com/goccy/go-json/internal/encoder/vm_indent" ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/color.go
vendor/github.com/goccy/go-json/color.go
package json import ( "fmt" "github.com/goccy/go-json/internal/encoder" ) type ( ColorFormat = encoder.ColorFormat ColorScheme = encoder.ColorScheme ) const escape = "\x1b" type colorAttr int //nolint:deadcode,varcheck const ( fgBlackColor colorAttr = iota + 30 fgRedColor fgGreenColor fgYellowColor fgBlu...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/query.go
vendor/github.com/goccy/go-json/query.go
package json import ( "github.com/goccy/go-json/internal/encoder" ) type ( // FieldQuery you can dynamically filter the fields in the structure by creating a FieldQuery, // adding it to context.Context using SetFieldQueryToContext and then passing it to MarshalContext. // This is a type-safe operation, so it is f...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/decode.go
vendor/github.com/goccy/go-json/decode.go
package json import ( "context" "fmt" "io" "reflect" "unsafe" "github.com/goccy/go-json/internal/decoder" "github.com/goccy/go-json/internal/errors" "github.com/goccy/go-json/internal/runtime" ) type Decoder struct { s *decoder.Stream } const ( nul = '\000' ) type emptyInterface struct { typ *runtime.Ty...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/errors/error.go
vendor/github.com/goccy/go-json/internal/errors/error.go
package errors import ( "fmt" "reflect" "strconv" ) type InvalidUTF8Error struct { S string // the whole string value that caused the error } func (e *InvalidUTF8Error) Error() string { return fmt.Sprintf("json: invalid UTF-8 in string: %s", strconv.Quote(e.S)) } type InvalidUnmarshalError struct { Type refle...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/runtime/struct_field.go
vendor/github.com/goccy/go-json/internal/runtime/struct_field.go
package runtime import ( "reflect" "strings" "unicode" ) func getTag(field reflect.StructField) string { return field.Tag.Get("json") } func IsIgnoredStructField(field reflect.StructField) bool { if field.PkgPath != "" { if field.Anonymous { t := field.Type if t.Kind() == reflect.Ptr { t = t.Elem() ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/runtime/type.go
vendor/github.com/goccy/go-json/internal/runtime/type.go
package runtime import ( "reflect" "sync" "unsafe" ) type SliceHeader struct { Data unsafe.Pointer Len int Cap int } const ( maxAcceptableTypeAddrRange = 1024 * 1024 * 2 // 2 Mib ) type TypeAddr struct { BaseTypeAddr uintptr MaxTypeAddr uintptr AddrRange uintptr AddrShift uintptr } var ( typeA...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/runtime/rtype.go
vendor/github.com/goccy/go-json/internal/runtime/rtype.go
package runtime import ( "reflect" "unsafe" ) // Type representing reflect.rtype for noescape trick type Type struct{} //go:linkname rtype_Align reflect.(*rtype).Align //go:noescape func rtype_Align(*Type) int func (t *Type) Align() int { return rtype_Align(t) } //go:linkname rtype_FieldAlign reflect.(*rtype).F...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/encoder/indent.go
vendor/github.com/goccy/go-json/internal/encoder/indent.go
package encoder import ( "bytes" "fmt" "github.com/goccy/go-json/internal/errors" ) func takeIndentSrcRuntimeContext(src []byte) (*RuntimeContext, []byte) { ctx := TakeRuntimeContext() buf := ctx.Buf[:0] buf = append(append(buf, src...), nul) ctx.Buf = buf return ctx, buf } func Indent(buf *bytes.Buffer, sr...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/encoder/compact.go
vendor/github.com/goccy/go-json/internal/encoder/compact.go
package encoder import ( "bytes" "fmt" "strconv" "unsafe" "github.com/goccy/go-json/internal/errors" ) var ( isWhiteSpace = [256]bool{ ' ': true, '\n': true, '\t': true, '\r': true, } isHTMLEscapeChar = [256]bool{ '<': true, '>': true, '&': true, } nul = byte('\000') ) func Compact(buf *byt...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/encoder/compiler_norace.go
vendor/github.com/goccy/go-json/internal/encoder/compiler_norace.go
//go:build !race // +build !race package encoder func CompileToGetCodeSet(ctx *RuntimeContext, typeptr uintptr) (*OpcodeSet, error) { initEncoder() if typeptr > typeAddr.MaxTypeAddr || typeptr < typeAddr.BaseTypeAddr { codeSet, err := compileToGetCodeSetSlowPath(typeptr) if err != nil { return nil, err } ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/encoder/option.go
vendor/github.com/goccy/go-json/internal/encoder/option.go
package encoder import ( "context" "io" ) type OptionFlag uint8 const ( HTMLEscapeOption OptionFlag = 1 << iota IndentOption UnorderedMapOption DebugOption ColorizeOption ContextOption NormalizeUTF8Option FieldQueryOption ) type Option struct { Flag OptionFlag ColorScheme *ColorScheme Context ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/encoder/decode_rune.go
vendor/github.com/goccy/go-json/internal/encoder/decode_rune.go
package encoder import "unicode/utf8" const ( // The default lowest and highest continuation byte. locb = 128 //0b10000000 hicb = 191 //0b10111111 // These names of these constants are chosen to give nice alignment in the // table below. The first nibble is an index into acceptRanges or F for // special one-by...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/encoder/map112.go
vendor/github.com/goccy/go-json/internal/encoder/map112.go
//go:build !go1.13 // +build !go1.13 package encoder import "unsafe" //go:linkname MapIterValue reflect.mapitervalue func MapIterValue(it *mapIter) unsafe.Pointer
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/goccy/go-json/internal/encoder/optype.go
vendor/github.com/goccy/go-json/internal/encoder/optype.go
// Code generated by internal/cmd/generator. DO NOT EDIT! package encoder import ( "strings" ) type CodeType int const ( CodeOp CodeType = 0 CodeArrayHead CodeType = 1 CodeArrayElem CodeType = 2 CodeSliceHead CodeType = 3 CodeSliceElem CodeType = 4 CodeMapHead CodeType = 5 CodeMapKey ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
true