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
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/plugin/client.go
test/e2e/legacy/plugin/client.go
package plugin import ( "crypto/tls" "fmt" "strconv" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/pkg/transport" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/mock/server/httpserver" "github.com/fatedier/frp/test/e2...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/plugin/server.go
test/e2e/legacy/plugin/server.go
package plugin import ( "fmt" "time" "github.com/onsi/ginkgo/v2" plugin "github.com/fatedier/frp/pkg/plugin/server" "github.com/fatedier/frp/pkg/transport" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" pluginpkg "github.com/fatedier/frp/test/e2e/pkg/plugin" ...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/basic.go
test/e2e/legacy/basic/basic.go
package basic import ( "crypto/tls" "fmt" "strings" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/pkg/transport" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/mock/server/httpserver" "github.com/fatedier/frp/...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/client.go
test/e2e/legacy/basic/client.go
package basic import ( "context" "fmt" "strconv" "strings" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/pkg/request" ) var _ = ginkgo.Describe("[Feature: ClientManage]", func() { f := f...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/xtcp.go
test/e2e/legacy/basic/xtcp.go
package basic import ( "fmt" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/pkg/port" "github.com/fatedier/frp/test/e2e/pkg/request" ) var _ = ginkgo.Describe("[Feature: XTCP]", func() { f ...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/config.go
test/e2e/legacy/basic/config.go
package basic import ( "fmt" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/pkg/port" ) var _ = ginkgo.Describe("[Feature: Config]", func() { f := framework.NewDefaultFramework() ginkgo.Describe("...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/cmd.go
test/e2e/legacy/basic/cmd.go
package basic import ( "strconv" "strings" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/pkg/request" ) const ( ConfigValidStr = "syntax is ok" ) var _ = ginkgo.Describe("[Feature: Cmd]", func() { f := framework.NewDefaultFramework() ginkgo.Desc...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/server.go
test/e2e/legacy/basic/server.go
package basic import ( "context" "fmt" "net" "strconv" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/pkg/port" "github.com/fatedier/frp/test/e2e/pkg/request" ) var _ = ginkgo.Describe("[Feature:...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/http.go
test/e2e/legacy/basic/http.go
package basic import ( "fmt" "net/http" "net/url" "strconv" "github.com/gorilla/websocket" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/mock/server/httpserver" "github.com/fatedier/frp/test/e2e...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/client_server.go
test/e2e/legacy/basic/client_server.go
package basic import ( "fmt" "strings" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/pkg/cert" "github.com/fatedier/frp/test/e2e/pkg/port" ) type generalTestConfigures struct { server ...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/basic/tcpmux.go
test/e2e/legacy/basic/tcpmux.go
package basic import ( "bufio" "fmt" "net" "net/http" "github.com/onsi/ginkgo/v2" httppkg "github.com/fatedier/frp/pkg/util/http" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/mock/server/streamserver" "github.com/fatedier...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/features/chaos.go
test/e2e/legacy/features/chaos.go
package features import ( "fmt" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" ) var _ = ginkgo.Describe("[Feature: Chaos]", func() { f := framework.NewDefaultFramework() ginkgo.It("reconnect after frps restart", func() { serverPort := f.AllocPort() serverConfigPath := f....
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/features/heartbeat.go
test/e2e/legacy/features/heartbeat.go
package features import ( "fmt" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" ) var _ = ginkgo.Describe("[Feature: Heartbeat]", func() { f := framework.NewDefaultFramework() ginkgo.It("disable application layer heartbeat", func() { serverPort := f.AllocPort() serverConf ...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/features/bandwidth_limit.go
test/e2e/legacy/features/bandwidth_limit.go
package features import ( "fmt" "strings" "time" "github.com/onsi/ginkgo/v2" plugin "github.com/fatedier/frp/pkg/plugin/server" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/mock/server/streamserver" pluginpkg "github.com/f...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/features/group.go
test/e2e/legacy/features/group.go
package features import ( "fmt" "strconv" "sync" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/mock/server/httpserver" "github.com/fatedier/frp/test/e2e/mock/server/streamserver" "github....
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/features/real_ip.go
test/e2e/legacy/features/real_ip.go
package features import ( "bufio" "fmt" "net" "net/http" "github.com/onsi/ginkgo/v2" pp "github.com/pires/go-proxyproto" "github.com/fatedier/frp/pkg/util/log" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/mock/server/http...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/test/e2e/legacy/features/monitor.go
test/e2e/legacy/features/monitor.go
package features import ( "fmt" "strings" "time" "github.com/onsi/ginkgo/v2" "github.com/fatedier/frp/pkg/util/log" "github.com/fatedier/frp/test/e2e/framework" "github.com/fatedier/frp/test/e2e/framework/consts" "github.com/fatedier/frp/test/e2e/pkg/request" ) var _ = ginkgo.Describe("[Feature: Monitor]", ...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/assets/assets.go
assets/assets.go
// Copyright 2016 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/assets/frps/embed.go
assets/frps/embed.go
package frpc import ( "embed" "github.com/fatedier/frp/assets" ) //go:embed static/* var content embed.FS func init() { assets.Register(content) }
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/assets/frpc/embed.go
assets/frpc/embed.go
package frpc import ( "embed" "github.com/fatedier/frp/assets" ) //go:embed static/* var content embed.FS func init() { assets.Register(content) }
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/service.go
server/service.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/dashboard_api.go
server/dashboard_api.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/control.go
server/control.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/controller/resource.go
server/controller/resource.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/visitor/visitor.go
server/visitor/visitor.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/stcp.go
server/proxy/stcp.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/proxy.go
server/proxy/proxy.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/tcp.go
server/proxy/tcp.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/xtcp.go
server/proxy/xtcp.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/https.go
server/proxy/https.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/sudp.go
server/proxy/sudp.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/udp.go
server/proxy/udp.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/http.go
server/proxy/http.go
// Copyright 2019 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/proxy/tcpmux.go
server/proxy/tcpmux.go
// Copyright 2020 guylewin, guy@lewin.co.il // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/metrics/metrics.go
server/metrics/metrics.go
package metrics import ( "sync" ) type ServerMetrics interface { NewClient() CloseClient() NewProxy(name string, proxyType string) CloseProxy(name string, proxyType string) OpenConnection(name string, proxyType string) CloseConnection(name string, proxyType string) AddTrafficIn(name string, proxyType string, ...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/group/tcp.go
server/group/tcp.go
// Copyright 2018 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/group/group.go
server/group/group.go
// Copyright 2018 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/group/https.go
server/group/https.go
// Copyright 2025 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/group/http.go
server/group/http.go
package group import ( "fmt" "net" "sync" "sync/atomic" "github.com/fatedier/frp/pkg/util/vhost" ) type HTTPGroupController struct { // groups indexed by group name groups map[string]*HTTPGroup // register createConn for each group to vhostRouter. // createConn will get a connection from one proxy of the g...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/group/tcpmux.go
server/group/tcpmux.go
// Copyright 2020 guylewin, guy@lewin.co.il // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/server/ports/ports.go
server/ports/ports.go
package ports import ( "errors" "net" "strconv" "sync" "time" "github.com/fatedier/frp/pkg/config/types" ) const ( MinPort = 1 MaxPort = 65535 MaxPortReservedDuration = time.Duration(24) * time.Hour CleanReservedPortsInterval = time.Hour ) var ( ErrPortAlreadyUsed...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/service.go
client/service.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/admin_api.go
client/admin_api.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/control.go
client/control.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/connector.go
client/connector.go
// Copyright 2023 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/visitor/stcp.go
client/visitor/stcp.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/visitor/xtcp.go
client/visitor/xtcp.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/visitor/sudp.go
client/visitor/sudp.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/visitor/visitor_manager.go
client/visitor/visitor_manager.go
// Copyright 2018 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/visitor/visitor.go
client/visitor/visitor.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/proxy/proxy.go
client/proxy/proxy.go
// Copyright 2017 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/proxy/proxy_wrapper.go
client/proxy/proxy_wrapper.go
// Copyright 2023 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/proxy/xtcp.go
client/proxy/xtcp.go
// Copyright 2023 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/proxy/sudp.go
client/proxy/sudp.go
// Copyright 2023 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/proxy/udp.go
client/proxy/udp.go
// Copyright 2023 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/proxy/proxy_manager.go
client/proxy/proxy_manager.go
// Copyright 2023 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/proxy/general_tcp.go
client/proxy/general_tcp.go
// Copyright 2023 The frp Authors // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/health/health.go
client/health/health.go
// Copyright 2018 fatedier, fatedier@gmail.com // // 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...
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
fatedier/frp
https://github.com/fatedier/frp/blob/33428ab538b7c55d46c70e2f04cc153f2400cd5b/client/event/event.go
client/event/event.go
package event import ( "errors" "github.com/fatedier/frp/pkg/msg" ) var ErrPayloadType = errors.New("error payload type") type Handler func(payload any) error type StartProxyPayload struct { NewProxyMsg *msg.NewProxy } type CloseProxyPayload struct { CloseProxyMsg *msg.CloseProxy }
go
Apache-2.0
33428ab538b7c55d46c70e2f04cc153f2400cd5b
2026-01-07T08:35:43.420197Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/main.go
main.go
package main import ( "bytes" "fmt" "log" "os" "runtime" "runtime/debug" "github.com/docker/docker/client" "github.com/go-errors/errors" "github.com/integrii/flaggy" "github.com/jesseduffield/lazydocker/pkg/app" "github.com/jesseduffield/lazydocker/pkg/config" "github.com/jesseduffield/lazydocker/pkg/util...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/scripts/translations/get_required_translations.go
scripts/translations/get_required_translations.go
package main import ( "fmt" "reflect" "github.com/jesseduffield/lazydocker/pkg/i18n" ) func main() { fmt.Println(getOutstandingTranslations()) } // adapted from https://github.com/a8m/reflect-examples#read-struct-tags func getOutstandingTranslations() string { output := "" for languageCode, translationSet := ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/scripts/cheatsheet/main.go
scripts/cheatsheet/main.go
package main import ( "fmt" "log" "os" "github.com/jesseduffield/lazydocker/pkg/cheatsheet" ) func main() { if len(os.Args) < 2 { log.Fatal("Please provide a command: one of 'generate', 'check'") } command := os.Args[1] switch command { case "generate": cheatsheet.Generate() fmt.Printf("\nGenerated ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/tasks/tasks.go
pkg/tasks/tasks.go
package tasks import ( "context" "fmt" "time" "github.com/jesseduffield/lazydocker/pkg/i18n" "github.com/sasha-s/go-deadlock" "github.com/sirupsen/logrus" ) type TaskManager struct { currentTask *Task waitingMutex deadlock.Mutex taskIDMutex deadlock.Mutex Log *logrus.Entry Tr *i18n.Tr...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/app/app.go
pkg/app/app.go
package app import ( "io" "strings" "github.com/jesseduffield/lazydocker/pkg/commands" "github.com/jesseduffield/lazydocker/pkg/config" "github.com/jesseduffield/lazydocker/pkg/gui" "github.com/jesseduffield/lazydocker/pkg/i18n" "github.com/jesseduffield/lazydocker/pkg/log" "github.com/jesseduffield/lazydocke...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/network.go
pkg/commands/network.go
package commands import ( "context" "github.com/docker/docker/api/types/filters" "github.com/docker/docker/api/types/network" "github.com/docker/docker/client" "github.com/sirupsen/logrus" ) // Network : A docker Network type Network struct { Name string Network network.Inspect Client *...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/volume.go
pkg/commands/volume.go
package commands import ( "context" "github.com/docker/docker/api/types/filters" "github.com/docker/docker/api/types/volume" "github.com/docker/docker/client" "github.com/sirupsen/logrus" ) // Volume : A docker Volume type Volume struct { Name string Volume *volume.Volume Client *clien...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/dummies.go
pkg/commands/dummies.go
package commands import ( "io" "github.com/jesseduffield/lazydocker/pkg/config" "github.com/jesseduffield/lazydocker/pkg/i18n" "github.com/sirupsen/logrus" ) // This file exports dummy constructors for use by tests in other packages // NewDummyOSCommand creates a new dummy OSCommand for testing func NewDummyOSC...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/container.go
pkg/commands/container.go
package commands import ( "context" "fmt" "os/exec" "strings" "github.com/docker/docker/api/types/container" "github.com/docker/docker/api/types/filters" "github.com/docker/docker/client" "github.com/go-errors/errors" "github.com/jesseduffield/lazydocker/pkg/i18n" "github.com/jesseduffield/lazydocker/pkg/ut...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/container_stats_test.go
pkg/commands/container_stats_test.go
package commands import ( "testing" "github.com/stretchr/testify/assert" ) func TestCalculateContainerCPUPercentage(t *testing.T) { container := &ContainerStats{} container.CPUStats.CPUUsage.TotalUsage = 10 container.CPUStats.SystemCPUUsage = 10 container.PrecpuStats.CPUUsage.TotalUsage = 5 container.PrecpuSt...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/service.go
pkg/commands/service.go
package commands import ( "context" "os/exec" "github.com/docker/docker/api/types/container" "github.com/jesseduffield/lazydocker/pkg/utils" "github.com/sirupsen/logrus" ) // Service : A docker Service type Service struct { Name string ID string OSCommand *OSCommand Log *lo...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/docker_host_windows.go
pkg/commands/docker_host_windows.go
package commands const ( defaultDockerHost = "npipe:////./pipe/docker_engine" )
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/errors.go
pkg/commands/errors.go
package commands import ( "fmt" "github.com/go-errors/errors" "golang.org/x/xerrors" ) const ( // MustStopContainer tells us that we must stop the container before removing it MustStopContainer = iota ) // WrapError wraps an error for the sake of showing a stack trace at the top level // the go-errors package,...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/docker_host_unix.go
pkg/commands/docker_host_unix.go
//go:build !windows package commands const ( defaultDockerHost = "unix:///var/run/docker.sock" )
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/image.go
pkg/commands/image.go
package commands import ( "context" "strings" "github.com/docker/docker/api/types/filters" "github.com/docker/docker/api/types/image" "github.com/docker/docker/client" "github.com/fatih/color" "github.com/jesseduffield/lazydocker/pkg/utils" "github.com/samber/lo" "github.com/sirupsen/logrus" ) // Image : A ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/docker.go
pkg/commands/docker.go
package commands import ( "bufio" "context" "encoding/json" "fmt" "io" ogLog "log" "os" "os/exec" "strings" "sync" "time" cliconfig "github.com/docker/cli/cli/config" ddocker "github.com/docker/cli/cli/context/docker" ctxstore "github.com/docker/cli/cli/context/store" "github.com/docker/docker/api/type...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/container_stats.go
pkg/commands/container_stats.go
package commands import ( "math" "time" ) // RecordedStats contains both the container stats we've received from docker, and our own derived stats from those container stats. When configuring a graph, you're basically specifying the path of a value in this struct type RecordedStats struct { ClientStats Container...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/os_test.go
pkg/commands/os_test.go
package commands import ( "fmt" "os" "os/exec" "testing" "github.com/stretchr/testify/assert" ) // TestOSCommandRunCommandWithOutput is a function. func TestOSCommandRunCommandWithOutput(t *testing.T) { type scenario struct { command string test func(string, error) } scenarios := []scenario{ { "...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/os_windows.go
pkg/commands/os_windows.go
package commands func getPlatform() *Platform { return &Platform{ os: "windows", shell: "cmd", shellArg: "/c", } }
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/os_default_platform.go
pkg/commands/os_default_platform.go
//go:build !windows // +build !windows package commands import ( "runtime" ) func getPlatform() *Platform { return &Platform{ os: runtime.GOOS, shell: "bash", shellArg: "-c", openCommand: "open {{filename}}", openLinkCommand: "open {{link}}", } }
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/os.go
pkg/commands/os.go
package commands import ( "context" "fmt" "io" "os" "os/exec" "path/filepath" "strings" "sync" "time" "github.com/go-errors/errors" "github.com/jesseduffield/kill" "github.com/jesseduffield/lazydocker/pkg/config" "github.com/jesseduffield/lazydocker/pkg/utils" "github.com/mgutz/str" "github.com/sirups...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/project.go
pkg/commands/project.go
package commands type Project struct { Name string }
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/ssh/ssh.go
pkg/commands/ssh/ssh.go
package ssh import ( "context" "fmt" "io" "net" "net/url" "os" "os/exec" "path" "time" ) // we only need these two methods from our OSCommand struct, for killing commands type CmdKiller interface { Kill(cmd *exec.Cmd) error PrepareForChildren(cmd *exec.Cmd) } type SSHHandler struct { oSCommand CmdKiller ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/commands/ssh/ssh_test.go
pkg/commands/ssh/ssh_test.go
package ssh import ( "context" "io" "os/exec" "testing" "github.com/stretchr/testify/assert" ) func TestSSHHandlerHandleSSHDockerHost(t *testing.T) { type scenario struct { testName string envVarValue string expectedDialContextCount int expectedStartCmdCount int } sce...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/turkish.go
pkg/i18n/turkish.go
package i18n func turkishSet() TranslationSet { return TranslationSet{ PruningStatus: "temizleniyor", RemovingStatus: "kaldırılıyor", RestartingStatus: "yeniden başlatılıyor", StoppingStatus: "durduruluyor", RunningCustomCommandStatus: "özel komut çalıştır", ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/i18n.go
pkg/i18n/i18n.go
package i18n import ( "strings" "github.com/imdario/mergo" "github.com/cloudfoundry/jibber_jabber" "github.com/go-errors/errors" "github.com/sirupsen/logrus" ) // Localizer will translate a message into the user's language type Localizer struct { Log *logrus.Entry S TranslationSet } func NewTranslationSet...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/french.go
pkg/i18n/french.go
package i18n func frenchSet() TranslationSet { return TranslationSet{ PruningStatus: "destruction", RemovingStatus: "suppression", RestartingStatus: "redémarrage", StartingStatus: "démarrage", StoppingStatus: "arrêt", PausingStatus: "...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/dutch.go
pkg/i18n/dutch.go
package i18n func dutchSet() TranslationSet { return TranslationSet{ PruningStatus: "vernietigen", RemovingStatus: "verwijderen", RestartingStatus: "herstarten", StoppingStatus: "stoppen", RunningCustomCommandStatus: "Aangepast commando draaien", NoViewMachi...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/chinese.go
pkg/i18n/chinese.go
package i18n func chineseSet() TranslationSet { return TranslationSet{ PruningStatus: "修剪中", RemovingStatus: "移除中", RestartingStatus: "重启中", StartingStatus: "启动中", StoppingStatus: "停止中", UppingServiceStatus: "升级服务中", UppingProjectStatus: ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/spanish.go
pkg/i18n/spanish.go
package i18n func spanishSet() TranslationSet { return TranslationSet{ PruningStatus: "limpiando", RemovingStatus: "eliminando", RestartingStatus: "reiniciando", StartingStatus: "iniciando", StoppingStatus: "terminando", UppingServiceStatus: ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/portuguese.go
pkg/i18n/portuguese.go
package i18n func portugueseSet() TranslationSet { return TranslationSet{ PruningStatus: "destruindo", RemovingStatus: "removendo", RestartingStatus: "reiniciando", StartingStatus: "iniciando", StoppingStatus: "parando", UppingServiceStatus: ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/english.go
pkg/i18n/english.go
package i18n // TranslationSet is a set of localised strings for a given language type TranslationSet struct { NotEnoughSpace string ProjectTitle string MainTitle string GlobalTitle string Nav...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/polish.go
pkg/i18n/polish.go
package i18n func polishSet() TranslationSet { return TranslationSet{ PruningStatus: "czyszczenie", RemovingStatus: "usuwanie", RestartingStatus: "restartowanie", StoppingStatus: "zatrzymywanie", RunningCustomCommandStatus: "uruchamianie własnej komendty", N...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/i18n/german.go
pkg/i18n/german.go
package i18n func germanSet() TranslationSet { return TranslationSet{ PruningStatus: "zerstören", RemovingStatus: "entfernen", RestartingStatus: "neustarten", StoppingStatus: "anhalten", RunningCustomCommandStatus: "führt benutzerdefinierten Befehl aus", NoV...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/utils/utils.go
pkg/utils/utils.go
package utils import ( "bytes" "encoding/json" "fmt" "html/template" "io" "math" "regexp" "sort" "strings" "time" "github.com/go-errors/errors" "github.com/jesseduffield/gocui" "github.com/mattn/go-runewidth" // "github.com/jesseduffield/yaml" "github.com/fatih/color" "github.com/goccy/go-yaml" "gi...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/utils/utils_test.go
pkg/utils/utils_test.go
package utils import ( "testing" "github.com/go-errors/errors" "github.com/stretchr/testify/assert" ) // TestSplitLines is a function. func TestSplitLines(t *testing.T) { type scenario struct { multilineString string expected []string } scenarios := []scenario{ { "", []string{}, }, { ...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/config/config_windows.go
pkg/config/config_windows.go
package config // GetPlatformDefaultConfig gets the defaults for the platform func GetPlatformDefaultConfig() OSConfig { return OSConfig{ OpenCommand: `cmd /c "start "" {{filename}}"`, OpenLinkCommand: `cmd /c "start "" {{link}}"`, } }
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/config/app_config_test.go
pkg/config/app_config_test.go
package config import ( "os" "testing" "github.com/jesseduffield/yaml" ) func TestDockerComposeCommandNoFiles(t *testing.T) { composeFiles := []string{} conf, err := NewAppConfig("name", "version", "commit", "date", "buildSource", false, composeFiles, "projectDir") if err != nil { t.Fatalf("Unexpected error:...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/config/config_linux.go
pkg/config/config_linux.go
package config // GetPlatformDefaultConfig gets the defaults for the platform func GetPlatformDefaultConfig() OSConfig { return OSConfig{ OpenCommand: `sh -c "xdg-open {{filename}} >/dev/null"`, OpenLinkCommand: `sh -c "xdg-open {{link}} >/dev/null"`, } }
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/config/config_default_platform.go
pkg/config/config_default_platform.go
//go:build !windows && !linux // +build !windows,!linux package config // GetPlatformDefaultConfig gets the defaults for the platform func GetPlatformDefaultConfig() OSConfig { return OSConfig{ OpenCommand: "open {{filename}}", OpenLinkCommand: "open {{link}}", } }
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false
jesseduffield/lazydocker
https://github.com/jesseduffield/lazydocker/blob/f4fc3669ca8eb67aa350a76503397192bf26f057/pkg/config/app_config.go
pkg/config/app_config.go
// Package config handles all the user-configuration. The fields here are // all in PascalCase but in your actual config.yml they'll be in camelCase. // You can view the default config with `lazydocker --config`. // You can open your config file by going to the status panel (using left-arrow) // and pressing 'o'. // Yo...
go
MIT
f4fc3669ca8eb67aa350a76503397192bf26f057
2026-01-07T08:35:43.570558Z
false