Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 289 for ncmd (1.91 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    }
    
    // findExe looks for an executable command on a set of paths.
    // If it cannot find it, returns cmd.
    func findExe(cmd string, paths []string) (string, bool) {
    	for _, p := range paths {
    		cp := filepath.Join(p, cmd)
    		if c, err := exec.LookPath(cp); err == nil {
    			return c, true
    		}
    	}
    	return cmd, false
    }
    
    // Disasm returns the assembly instructions for the specified address range
    // of a binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables.go

    	}
    
    	for _, iptVer := range iptablesVariant {
    		for _, cmd := range deleteCmds {
    			delErrs = append(delErrs, cfg.ext.Run(iptablesconstants.IPTables, &iptVer, nil, cmd...))
    		}
    
    		for _, cmd := range optionalDeleteCmds {
    			err := cfg.ext.Run(iptablesconstants.IPTables, &iptVer, nil, cmd...)
    			if err != nil {
    				log.Debugf("ignoring error deleting optional iptables rule: %v", err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    		HTMLBody: template.HTML(string(svg)),
    		Nodes:    nodes,
    	})
    }
    
    func dotToSvg(dot []byte) ([]byte, error) {
    	cmd := exec.Command("dot", "-Tsvg")
    	out := &bytes.Buffer{}
    	cmd.Stdin, cmd.Stdout, cmd.Stderr = bytes.NewBuffer(dot), out, os.Stderr
    	if err := cmd.Run(); err != nil {
    		return nil, err
    	}
    
    	// Fix dot bug related to unquoted ampersands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	"k8s.io/klog/v2"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	certsphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/certs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/certs/renewal"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/controlplane"
    	etcdphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/etcd"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    	"path"
    	"path/filepath"
    	"runtime"
    	"runtime/debug"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    	"unsafe"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cache"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/par"
    	"cmd/go/internal/str"
    )
    
    // enabled is used to flag off the behavior of the module index on tip.
    // It will be removed before the release.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/objfile.go

    // code below:
    //
    // - cmd/internal/obj/objfile.go (used by cmd/asm and cmd/compile)
    // - cmd/internal/objfile/goobj.go (used cmd/nm, cmd/objdump)
    // - cmd/link/internal/loader package (used by cmd/link)
    //
    // If the object file format changes, they may (or may not) need to change.
    
    package goobj
    
    import (
    	"cmd/internal/bio"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"unsafe"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. pkg/log/options.go

    // the necessary set of flags to expose a CLI to let the user control all
    // logging options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	o.AttachFlags(
    		cmd.PersistentFlags().StringArrayVar,
    		cmd.PersistentFlags().StringVar,
    		cmd.PersistentFlags().IntVar,
    		cmd.PersistentFlags().BoolVar)
    }
    
    // AttachFlags allows attaching of flags through a set of lambda functions.
    func (o *Options) AttachFlags(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/crypto/tls/bogo_shim_test.go

    		args = append(args, fmt.Sprintf("-test=%s", *bogoFilter))
    	}
    
    	goCmd, err := testenv.GoTool()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cmd := exec.Command(goCmd, args...)
    	out := &strings.Builder{}
    	cmd.Stderr = out
    	cmd.Dir = filepath.Join(bogoDir, "ssl/test/runner")
    	err = cmd.Run()
    	// NOTE: we don't immediately check the error, because the failure could be either because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ld
    
    import (
    	"bytes"
    	"cmd/internal/codesign"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/macho"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"io"
    	"os"
    	"sort"
    	"strings"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter_test.go

    		testenv.WriteImportcfg(t, importcfgfile, packageFiles, pkgImports...)
    	}
    
    	pkgpath := path.Join("testdata", basename)
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p", pkgpath, "-D", "testdata", "-importcfg", importcfgfile, "-o", outname, filename)
    	cmd.Dir = dirname
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    		t.Fatalf("go tool compile %s failed: %s", filename, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top