- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for Wain (0.15 sec)
-
src/cmd/addr2line/main.go
// of the source code corresponding to that address. // // This tool is intended for use only by pprof; its interface may change or // it may be deleted entirely in future releases. package main import ( "bufio" "flag" "fmt" "log" "os" "strconv" "strings" "cmd/internal/objfile" ) func printUsage(w *os.File) { fmt.Fprintf(w, "usage: addr2line binary\n")
Go - Registered: 2023-11-28 11:13 - Last Modified: 2022-04-11 16:34 - 2.3K bytes - Viewed (0) -
misc/go_android_exec/main.go
//go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd // This program can be used as go_android_GOARCH_exec by the Go tool. // It executes binaries on an android device using adb. package main import ( "bytes" "errors" "fmt" "io" "log" "os" "os/exec" "os/signal" "path" "path/filepath" "regexp" "runtime" "strconv" "strings" "sync" "syscall" )
Go - Registered: 2023-11-28 11:13 - Last Modified: 2023-08-21 17:46 - 15.3K bytes - Viewed (0) -
src/cmd/cgo/internal/swig/testdata/callback/main.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import ( "fmt" "os" ) func main() { if len(os.Args) != 2 { fatal("usage: callback testname") } switch os.Args[1] { default: fatal("unknown test %q", os.Args[1]) case "Call": testCall() case "Callback": testCallback() }
Go - Registered: 2023-11-28 11:13 - Last Modified: 2023-05-12 12:00 - 1K bytes - Viewed (0) -
operator/cmd/operator/main.go
// See the License for the specific language governing permissions and // limitations under the License. package main import ( "os" controllruntimelog "sigs.k8s.io/controller-runtime/pkg/log" "istio.io/istio/pkg/log" ) func main() { log.EnableKlogWithCobra() // adding to remove message about the controller-runtime logs not getting displayed
Go - Registered: 2023-11-22 22:53 - Last Modified: 2023-11-09 23:13 - 1K bytes - Viewed (0) -
cmd/main.go
return strings.NewReader(banner.String()) } func printMinIOVersion(c *cli.Context) { io.Copy(c.App.Writer, versionBanner(c)) } // Main main for minio server. func Main(args []string) { // Set the minio app name. appName := filepath.Base(args[0]) if env.Get("_MINIO_DEBUG_NO_EXIT", "") != "" { freeze := func(_ int) { // Infinite blocking op
Go - Registered: 2023-12-03 19:28 - Last Modified: 2023-09-04 19:57 - 6.4K bytes - Viewed (0) -
istioctl/cmd/istioctl/main.go
// See the License for the specific language governing permissions and // limitations under the License. package main import ( "fmt" "os" // import all known client auth plugins _ "k8s.io/client-go/plugin/pkg/client/auth" "istio.io/istio/istioctl/cmd" "istio.io/istio/pkg/log" ) func main() { if err := cmd.ConfigAndEnvProcessing(); err != nil { fmt.Fprintf(os.Stderr, "Could not initialize: %v\n", err)
Go - Registered: 2023-11-29 22:53 - Last Modified: 2023-05-23 17:08 - 1.1K bytes - Viewed (0) -
src/cmd/asm/main.go
// license that can be found in the LICENSE file. package main import ( "bufio" "flag" "fmt" "internal/buildcfg" "log" "os" "cmd/asm/internal/arch" "cmd/asm/internal/asm" "cmd/asm/internal/flags" "cmd/asm/internal/lex" "cmd/internal/bio" "cmd/internal/obj" "cmd/internal/objabi" ) func main() { log.SetFlags(0) log.SetPrefix("asm: ") buildcfg.Check()
Go - Registered: 2023-11-28 11:13 - Last Modified: 2023-08-29 07:48 - 2.7K bytes - Viewed (0) -
docs/debugging/pprofgoparser/main.go
// GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package main import ( "bufio" "bytes" "flag" "fmt" "log" "math" "os" "path" "regexp" "strconv" "strings" "time" ) var ( re *regexp.Regexp
Go - Registered: 2023-12-03 19:28 - Last Modified: 2023-06-04 21:20 - 3K bytes - Viewed (0) -
src/cmd/cgo/internal/test/issue24161e2/main.go
Austin Clements <******@****.***> 1683224724 -0400
Go - Registered: 2023-11-28 11:13 - Last Modified: 2023-05-12 12:00 - 1K bytes - Viewed (1) -
main.go
Go - Registered: 2023-12-03 19:28 - Last Modified: 2022-10-25 00:44 - 973 bytes - Viewed (0)