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
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/internal/saslerr/condition_test.go
internal/saslerr/condition_test.go
// Copyright 2022 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package saslerr // ConditionIndex is exported only during tests for the saslerr_test package to // use. var ConditionIndex = _Condition_index
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/internal/discover/lookup_integration_test.go
internal/discover/lookup_integration_test.go
// Copyright 2018 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:build integration // +build integration package discover_test import ( "context" "net" "strconv" "testing" "mellium.im/xmpp/internal/discover" "mellium....
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/internal/discover/lookup_test.go
internal/discover/lookup_test.go
// Copyright 2016 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package discover import ( "context" "encoding/xml" "fmt" "net" "net/http" "reflect" "strconv" "testing" "time" "mellium.im/xmpp/jid" ) var ( boshLink = ...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/internal/discover/lookup.go
internal/discover/lookup.go
// Copyright 2016 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // Package discover is used to look up information about XMPP-based services. package discover // import "mellium.im/xmpp/internal/discover" import ( "context" "en...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/examples/im/main.go
examples/im/main.go
// Copyright 2019 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // The im command sends XMPP (Jabber) messages from the command line. // It can send instant messages to individuals and multi-user chats (MUCs), // similar to mail(1...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/examples/echobot/echo.go
examples/echobot/echo.go
// Copyright 2019 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package main import ( "context" "crypto/tls" "encoding/xml" "errors" "fmt" "io" "log" "mellium.im/sasl" "mellium.im/xmlstream" "mellium.im/xmpp" "mellium...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/examples/echobot/main.go
examples/echobot/main.go
// Copyright 2019 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // The echobot command listens on the given JID and replies to messages with the // same contents. // // For more information try running: // // echobot -help package...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/examples/commands/commands.go
examples/commands/commands.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // The commands command lists and executes ad-hoc commands. package main import ( "bufio" "context" "crypto/tls" "encoding/xml" "fmt" "log" "mellium.im/xmlstr...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/examples/msgrepl/main.go
examples/msgrepl/main.go
// Copyright 2019 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // The msgrepl command listens on the given JID and prints and sends messages. // // For more information try running the command and typing "help" at the prompt. pac...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/iter.go
bookmarks/iter.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package bookmarks import ( "context" "encoding/xml" "mellium.im/xmpp" "mellium.im/xmpp/jid" "mellium.im/xmpp/pubsub" "mellium.im/xmpp/stanza" ) // Fetch requ...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/publish.go
bookmarks/publish.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package bookmarks import ( "context" "mellium.im/xmpp" "mellium.im/xmpp/jid" "mellium.im/xmpp/pubsub" "mellium.im/xmpp/stanza" ) // Publish creates or updates...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/integration_test.go
bookmarks/integration_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:build integration // +build integration package bookmarks_test import ( "context" "crypto/tls" "testing" "mellium.im/sasl" "mellium.im/xmpp" "mellium.im...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/publish_test.go
bookmarks/publish_test.go
// Copyright 2022 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package bookmarks_test import ( "bytes" "context" "encoding/xml" "errors" "testing" "mellium.im/xmlstream" "mellium.im/xmpp/bookmarks" "mellium.im/xmpp/inte...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/disco.go
bookmarks/disco.go
// Code generated by "genfeature -vars Feature:NS,FeatureNotify:NSNotify"; DO NOT EDIT. package bookmarks import ( "mellium.im/xmpp/disco/info" ) // A list of service discovery features that are supported by this package. var ( Feature = info.Feature{Var: NS} FeatureNotify = info.Feature{Var: NSNotify} )
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/channel.go
bookmarks/channel.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package bookmarks import ( "bytes" "encoding/xml" "strconv" "mellium.im/xmlstream" "mellium.im/xmpp/jid" ) // Channel represents a single chat room with vario...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/handler.go
bookmarks/handler.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package bookmarks import ( "mellium.im/xmpp/disco/info" ) // Handler can be registered against a mux to handle bookmark pushes. type Handler struct { } // ForFeat...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/doc.go
bookmarks/doc.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:generate go run ../internal/genfeature -vars "Feature:NS,FeatureNotify:NSNotify" // Package bookmarks implements storing bookmarks to chat rooms. package bookma...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/bookmarks/channel_test.go
bookmarks/channel_test.go
// Copyright 2022 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package bookmarks_test import ( "testing" "mellium.im/xmpp/bookmarks" "mellium.im/xmpp/internal/xmpptest" ) var marshalTestCases = []xmpptest.EncodingTestCase{ ...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/dial/integration_test.go
dial/integration_test.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:build integration // +build integration package dial_test import ( "context" "net" "reflect" "strings" "testing" "time" "mellium.im/xmpp/dial" "melliu...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/dial/dial.go
dial/dial.go
// Copyright 2016 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // Package dial provides mechanisms to resolve and dial XMPP endpoints. // // This package provides advanced configuration for establishing the initial // network lay...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/form/form.go
form/form.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package form import ( "encoding/xml" "errors" "fmt" "io" "strconv" "strings" "mellium.im/xmlstream" "mellium.im/xmpp/jid" ) var spaceReplacer = strings.New...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/form/form_test.go
form/form_test.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package form_test import ( "bytes" "encoding/xml" "strconv" "testing" "mellium.im/xmlstream" "mellium.im/xmpp/form" "mellium.im/xmpp/jid" ) var ( _ xml.Mar...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/form/iter.go
form/iter.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package form // Iter is the interface implemented by types that implement disco form // extensions. type Iter interface { ForForms(node string, f func(*Data) error)...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/form/options.go
form/options.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package form // An Field is used to define the behavior and appearance of a data form. type Field func(*Data) // Title sets a form's title. func Title(s string) Fie...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/form/disco.go
form/disco.go
// Code generated by "genfeature"; DO NOT EDIT. package form import ( "mellium.im/xmpp/disco/info" ) // A list of service discovery features that are supported by this package. var ( Feature = info.Feature{Var: NS} )
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/form/doc.go
form/doc.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:generate go run ../internal/genfeature // Package form implements sending and submitting data forms. package form // import "mellium.im/xmpp/form"
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/form/fields.go
form/fields.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package form import ( "encoding/xml" "mellium.im/xmlstream" "mellium.im/xmpp/jid" ) // FieldType is the type of fields in a dataform. For more information see t...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/s2s/bidi_test.go
s2s/bidi_test.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package s2s_test import ( "testing" "mellium.im/xmpp" "mellium.im/xmpp/internal/xmpptest" "mellium.im/xmpp/s2s" ) var bidiTestCases = [...]xmpptest.FeatureTest...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/s2s/doc.go
s2s/doc.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // Package s2s implements server-to-server functionality. package s2s // import "mellium.im/xmpp/s2s"
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/s2s/bidi.go
s2s/bidi.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package s2s import ( "context" "encoding/xml" "io" "mellium.im/xmlstream" "mellium.im/xmpp" ) // Namespaces used in this package, provided as a convenience. c...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/color/cvd_string.go
color/cvd_string.go
// Code generated by "stringer -type=CVD"; DO NOT EDIT. package color import "strconv" const _CVD_name = "NoneRedGreenBlue" var _CVD_index = [...]uint8{0, 4, 12, 16} func (i CVD) String() string { if i >= CVD(len(_CVD_index)-1) { return "CVD(" + strconv.FormatInt(int64(i), 10) + ")" } return _CVD_name[_CVD_in...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/color/color_test.go
color/color_test.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package color_test import ( "fmt" "image/color" "strconv" "testing" xmppcolor "mellium.im/xmpp/color" ) var _ fmt.Stringer = xmppcolor.CVD(0) func TestSize(t...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/color/color.go
color/color.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:generate go run -tags=tools golang.org/x/tools/cmd/stringer -type=CVD // Package color implements XEP-0392: Consistent Color Generation v0.4. package color // i...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/color/example_test.go
color/example_test.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package color_test import ( "image" "image/color" "image/draw" "image/png" "os" "golang.org/x/image/font" "golang.org/x/image/font/inconsolata" "golang.org/...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/invites_test.go
muc/invites_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc_test import ( "encoding/xml" "testing" "mellium.im/xmlstream" "mellium.im/xmpp/internal/xmpptest" "mellium.im/xmpp/jid" "mellium.im/xmpp/muc" ) v...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/muc.go
muc/muc.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:generate go run ../internal/genfeature -receiver "*Client" // Package muc implements Multi-User Chat. // // Unlike many Multi-User Chat (MUC) implementations, t...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/room.go
muc/room.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc import ( "context" "encoding/xml" "mellium.im/xmlstream" "mellium.im/xmpp" "mellium.im/xmpp/internal/attr" "mellium.im/xmpp/jid" "mellium.im/xmpp...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/types_test.go
muc/types_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc_test import ( "encoding/xml" "mellium.im/xmpp/muc" ) var ( _ xml.MarshalerAttr = (*muc.Role)(nil) _ xml.UnmarshalerAttr = (*muc.Role)(nil) _ xml...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/room_test.go
muc/room_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc_test import ( "context" "encoding/xml" "strconv" "strings" "testing" "mellium.im/xmlstream" "mellium.im/xmpp/internal/xmpptest" "mellium.im/xmpp...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/types.go
muc/types.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:generate go run -tags=tools golang.org/x/tools/cmd/stringer -type=Affiliation,Role,Privileges -linecomment package muc import ( "encoding/xml" "errors" "me...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/options_test.go
muc/options_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc import ( "testing" "time" "mellium.im/xmpp/internal/xmpptest" ) var marshalTestCases = []xmpptest.EncodingTestCase{ 0: { Value: func() *config { ...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/integration_test.go
muc/integration_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:build integration // +build integration package muc_test import ( "context" "crypto/tls" "errors" "testing" "mellium.im/sasl" "mellium.im/xmpp" "melliu...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/options.go
muc/options.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc import ( "encoding/xml" "math" "strconv" "time" "mellium.im/xmlstream" ) type historyConfig struct { maxStanzas *uint64 maxChars *uint64 seco...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/invites.go
muc/invites.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc import ( "context" "encoding/xml" "mellium.im/xmlstream" "mellium.im/xmpp" "mellium.im/xmpp/jid" "mellium.im/xmpp/mux" "mellium.im/xmpp/stanza" )...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/affiliation_string.go
muc/affiliation_string.go
// Code generated by "stringer -type=Affiliation,Role,Privileges -linecomment"; DO NOT EDIT. package muc import "strconv" const _Affiliation_name = "noneowneradminmemberoutcast" var _Affiliation_index = [...]uint8{0, 4, 9, 14, 20, 27} func (i Affiliation) String() string { if i >= Affiliation(len(_Affiliation_ind...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/muc_test.go
muc/muc_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package muc_test import ( "context" "encoding/xml" "errors" "strings" "testing" "mellium.im/xmlstream" "mellium.im/xmpp/internal/xmpptest" "mellium.im/xmpp/...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/disco.go
muc/disco.go
// Code generated by "genfeature -receiver *Client"; DO NOT EDIT. package muc import ( "mellium.im/xmpp/disco/info" ) // A list of service discovery features that are supported by this package. var ( Feature = info.Feature{Var: NS} ) // ForFeatures implements info.FeatureIter. func (*Client) ForFeatures(node stri...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/muc/room_integration_test.go
muc/room_integration_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:build integration // +build integration package muc_test import ( "context" "crypto/tls" "testing" "time" "mellium.im/sasl" "mellium.im/xmpp" "mellium....
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/trustmsg_test.go
crypto/trustmsg_test.go
// Copyright 2023 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package crypto_test import ( "encoding/base64" "encoding/xml" "testing" "mellium.im/xmlstream" "mellium.im/xmpp/crypto" "mellium.im/xmpp/internal/xmpptest" "...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/crypto_test.go
crypto/crypto_test.go
// Copyright 2022 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package crypto_test import ( stdcrypto "crypto" _ "crypto/sha256" "encoding/xml" "strconv" "testing" "mellium.im/xmpp/crypto" "mellium.im/xmpp/internal/xmppt...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/handler_test.go
crypto/handler_test.go
// Copyright 2022 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package crypto_test import ( _ "crypto/sha256" "errors" "reflect" "strconv" "testing" "mellium.im/xmpp/crypto" "mellium.im/xmpp/disco/info" ) var iterTests ...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/crypto.go
crypto/crypto.go
// Copyright 2022 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:generate go run ../internal/genfeature // Package crypto contains common cryptographic elements. package crypto // import "mellium.im/xmpp/crypto" import ( "c...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/disco.go
crypto/disco.go
// Code generated by "genfeature"; DO NOT EDIT. package crypto import ( "mellium.im/xmpp/disco/info" ) // A list of service discovery features that are supported by this package. var ( Feature = info.Feature{Var: NS} )
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/trustmsgexport_test.go
crypto/trustmsgexport_test.go
// Copyright 2023 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package crypto // ErrTrustElement is exported only during testing for use by the _test package. var ErrTrustElement = errTrustElement
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/handler.go
crypto/handler.go
// Copyright 2022 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package crypto import ( "fmt" "mellium.im/xmpp/disco/info" ) // Features returns an iter that can be registered against a mux to advertise // support for the has...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/crypto/trustmsg.go
crypto/trustmsg.go
// Copyright 2023 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package crypto import ( "encoding/base64" "encoding/xml" "errors" "mellium.im/xmlstream" "mellium.im/xmpp/jid" ) // A Key is an opaque collection of bytes (th...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/component/component.go
component/component.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // Package component is used to establish XEP-0114: Jabber Component Protocol // connections. package component // import "mellium.im/xmpp/component" import ( "cont...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/component/component_test.go
component/component_test.go
// Copyright 2017 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package component_test import ( "bytes" "context" "encoding/xml" "errors" "fmt" "io" "strings" "testing" "mellium.im/xmpp/component" "mellium.im/xmpp/jid"...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/component/integration_test.go
component/integration_test.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:build integration // +build integration package component_test import ( "context" "crypto/tls" "encoding/xml" "testing" "time" "mellium.im/sasl" "melli...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/delay/delay_test.go
delay/delay_test.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package delay_test import ( "encoding/xml" "strconv" "strings" "testing" "time" "mellium.im/xmlstream" "mellium.im/xmpp/delay" "mellium.im/xmpp/jid" "melli...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/delay/delay.go
delay/delay.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // Package delay implements delayed delivery of stanzas. package delay // import "mellium.im/xmpp/delay" import ( "encoding/xml" "fmt" "time" "mellium.im/xmlstr...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/websocket/negotiator.go
websocket/negotiator.go
// Copyright 2021 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package websocket import ( "context" "io" "mellium.im/xmpp" "mellium.im/xmpp/internal/wskey" "mellium.im/xmpp/stream" ) // Negotiator is like xmpp.NewNegotiat...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/websocket/ws.go
websocket/ws.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. package websocket import ( "context" "crypto/tls" "fmt" "io" "net" "net/http" "sort" "strings" "golang.org/x/net/websocket" "mellium.im/xmpp" "mellium.i...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/websocket/integration_test.go
websocket/integration_test.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. //go:build integration // +build integration package websocket_test import ( "context" "crypto/tls" "testing" "mellium.im/sasl" "mellium.im/xmpp" "mellium.im...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
mellium/xmpp
https://github.com/mellium/xmpp/blob/a3dd6d7ce77932826d4d1683a9bd5d884226339e/websocket/doc.go
websocket/doc.go
// Copyright 2020 The Mellium Contributors. // Use of this source code is governed by the BSD 2-clause // license that can be found in the LICENSE file. // Package websocket implements a WebSocket transport for XMPP. package websocket // import "mellium.im/xmpp/websocket" // Various constants used by this package, pr...
go
BSD-2-Clause
a3dd6d7ce77932826d4d1683a9bd5d884226339e
2026-01-07T09:45:51.690808Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/main.go
main.go
/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/middleware/middleware.go
pkg/middleware/middleware.go
package middleware import ( "fmt" "strings" route "github.com/openshift/api/route/v1" quaycontext "github.com/quay/quay-operator/pkg/context" appsv1 "k8s.io/api/apps/v1" autoscalingv2 "k8s.io/api/autoscaling/v2" batchv1 "k8s.io/api/batch/v1" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/meta" "k8...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/middleware/middleware_test.go
pkg/middleware/middleware_test.go
package middleware import ( "fmt" "testing" route "github.com/openshift/api/route/v1" quaycontext "github.com/quay/quay-operator/pkg/context" "github.com/stretchr/testify/assert" autoscalingv2 "k8s.io/api/autoscaling/v2" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimac...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/kustomize/kustomize.go
pkg/kustomize/kustomize.go
package kustomize import ( "errors" "fmt" "os" "path/filepath" "runtime" "sort" "strings" "github.com/go-logr/logr" objectbucket "github.com/kube-object-storage/lib-bucket-provisioner/pkg/apis/objectbucket.io/v1alpha1" route "github.com/openshift/api/route/v1" prometheusv1 "github.com/prometheus-operator/p...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/kustomize/kustomize_test.go
pkg/kustomize/kustomize_test.go
package kustomize import ( "os" "strings" "testing" "github.com/go-logr/logr" testlogr "github.com/go-logr/logr/testing" objectbucket "github.com/kube-object-storage/lib-bucket-provisioner/pkg/apis/objectbucket.io/v1alpha1" "github.com/stretchr/testify/assert" appsv1 "k8s.io/api/apps/v1" autoscaling "k8s.io/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/kustomize/secrets.go
pkg/kustomize/secrets.go
package kustomize import ( "crypto/rand" "encoding/base64" "fmt" "net/url" "os" "strings" "time" "github.com/go-logr/logr" "github.com/quay/clair/config" "github.com/quay/config-tool/pkg/lib/fieldgroups/database" "github.com/quay/config-tool/pkg/lib/fieldgroups/distributedstorage" "github.com/quay/config-...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/kustomize/secrets_test.go
pkg/kustomize/secrets_test.go
package kustomize import ( "bytes" "fmt" "io/fs" "os" "testing" "github.com/stretchr/testify/assert" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/util/cert" "sigs.k8s.io/yaml" "github.com/quay/clair/config" "github.com/quay/config-tool/pkg/lib/fieldgroups/database" "github.com/quay/con...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/context/context.go
pkg/context/context.go
package context // QuayRegistryContext contains additional information accrued and consumed during the reconcile loop of a `QuayRegistry`. type QuayRegistryContext struct { // External Access SupportsRoutes bool ClusterHostname string ServerHostname string BuildManagerHostname string // Cluster...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/quaypostgres.go
pkg/cmpstatus/quaypostgres.go
package cmpstatus import ( "context" "time" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // Postgres checks a quay registry postgres component status. type Postgres struct { Client client.Client } // Name returns ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/database_status.go
pkg/cmpstatus/database_status.go
package cmpstatus import ( "context" "fmt" "time" "golang.org/x/text/cases" "golang.org/x/text/language" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtim...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/deploy_test.go
pkg/cmpstatus/deploy_test.go
package cmpstatus import ( "reflect" "testing" "time" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) func TestDeploy_check(t *testing.T) { for _, tt := range []struct { name string cond qv1.Cond...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/tls_test.go
pkg/cmpstatus/tls_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) func TestTLSCheck(t *test...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/deploy.go
pkg/cmpstatus/deploy.go
package cmpstatus import ( "fmt" "time" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // deploy checks the status for a given deployment instance. This type is used by components that // create objects o...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/redis_test.go
pkg/cmpstatus/redis_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" qv1 "github.com/quay/quay-operator/apis/quay/v1"...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/mirror.go
pkg/cmpstatus/mirror.go
package cmpstatus import ( "context" "fmt" "time" appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // Mirror checks a ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/objectstorage.go
pkg/cmpstatus/objectstorage.go
package cmpstatus import ( "context" "time" qv1 "github.com/quay/quay-operator/apis/quay/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" ocsv1a1 "github.com/kube-object-storage/lib-bucket-provisioner/pkg/apis/objectbucket.io/v1alpha1" ) // ObjectStorage is capable...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/evaluator_test.go
pkg/cmpstatus/evaluator_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" appsv1 "k8s.io/api/apps/v1" asv2 "k8s.io/api/autoscaling/v2" batchv1 "k8s.io/api/batch/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "sigs.k8s.io/controller-runtime/pkg/client" ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/monitoring.go
pkg/cmpstatus/monitoring.go
package cmpstatus import ( "context" "fmt" "time" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" monv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1" qv1 "github.com/q...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/route_test.go
pkg/cmpstatus/route_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" routev1 "github.com/openshift/api/route/v1...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/redis.go
pkg/cmpstatus/redis.go
package cmpstatus import ( "context" "fmt" "time" appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // Redis checks a q...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/database_status_test.go
pkg/cmpstatus/database_status_test.go
package cmpstatus import ( "context" "fmt" "reflect" "testing" "time" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" clientgoscheme "k8s.io/client-go/kubernetes/scheme" "sigs.k8s.io/con...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/monitoring_test.go
pkg/cmpstatus/monitoring_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" monv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/moni...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/clair.go
pkg/cmpstatus/clair.go
package cmpstatus import ( "context" "fmt" "time" appsv1 "k8s.io/api/apps/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // Clair checks a q...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/clairpostgres.go
pkg/cmpstatus/clairpostgres.go
package cmpstatus import ( "context" "time" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // ClairPostgres checks a quay registry clairpostgres component status. type ClairPostgres struct { Client client.Client } /...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/quay_test.go
pkg/cmpstatus/quay_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" appsv1 "k8s.io/api/apps/v1" batchv1 "k8s.io/api/batch/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake"...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/hpa.go
pkg/cmpstatus/hpa.go
package cmpstatus import ( "context" "fmt" "time" asv2 "k8s.io/api/autoscaling/v2" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // HPA checks ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/quay.go
pkg/cmpstatus/quay.go
package cmpstatus import ( "context" "fmt" "time" appsv1 "k8s.io/api/apps/v1" batchv1 "k8s.io/api/batch/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/clair_test.go
pkg/cmpstatus/clair_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" qv1 "github.com/quay/quay-op...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/objectstorage_test.go
pkg/cmpstatus/objectstorage_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" qv1 "github.com/quay/quay-operator/apis/quay/v1" ocsv1a1 "github.com/...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/evaluator.go
pkg/cmpstatus/evaluator.go
package cmpstatus import ( "context" "fmt" "strings" "time" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // Checker is implemented by all status analysers in this package. it implements two functions, // one that ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/route.go
pkg/cmpstatus/route.go
package cmpstatus import ( "context" "time" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" routev1 "github.com/openshift/api/route/v1" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // Route checks a quay registry route status. type ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/mirror_test.go
pkg/cmpstatus/mirror_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" qv1 "github.com/quay/quay-op...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/tls.go
pkg/cmpstatus/tls.go
package cmpstatus import ( "context" "time" corev1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) // TLS checks a quay regis...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/pkg/cmpstatus/hpa_test.go
pkg/cmpstatus/hpa_test.go
package cmpstatus import ( "context" "reflect" "testing" "time" asv2 "k8s.io/api/autoscaling/v2" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" qv1 "github.com/quay/quay-operator/apis/quay/v1" ) func TestHPACheck(t ...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false
quay/quay-operator
https://github.com/quay/quay-operator/blob/5a999da6a496e943d67219c8dca531b777a2ee1f/vendor/github.com/json-iterator/go/iter_int.go
vendor/github.com/json-iterator/go/iter_int.go
package jsoniter import ( "math" "strconv" ) var intDigits []int8 const uint32SafeToMultiply10 = uint32(0xffffffff)/10 - 1 const uint64SafeToMultiple10 = uint64(0xffffffffffffffff)/10 - 1 const maxFloat64 = 1<<53 - 1 func init() { intDigits = make([]int8, 256) for i := 0; i < len(intDigits); i++ { intDigits[i...
go
Apache-2.0
5a999da6a496e943d67219c8dca531b777a2ee1f
2026-01-07T09:45:38.853115Z
false