Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 450 for vflag (0.23 sec)

  1. src/cmd/nm/nm.go

    	os.Exit(2)
    }
    
    var (
    	sortOrder = flag.String("sort", "name", "")
    	printSize = flag.Bool("size", false, "")
    	printType = flag.Bool("type", false, "")
    
    	filePrefix = false
    )
    
    func init() {
    	flag.Var(nflag(0), "n", "") // alias for -sort address
    }
    
    type nflag int
    
    func (nflag) IsBoolFlag() bool {
    	return true
    }
    
    func (nflag) Set(value string) error {
    	if value == "true" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/collateral/control.go

    	}
    }
    
    func addFlags(f map[string]*pflag.Flag, s *pflag.FlagSet) {
    	s.VisitAll(func(flag *pflag.Flag) {
    		if flag.Deprecated != "" || flag.Hidden {
    			return
    		}
    
    		if flag.Name == help {
    			return
    		}
    
    		f[flag.Name] = flag
    	})
    }
    
    func (g *generator) genFlag(flag *pflag.Flag, genShorthand bool) {
    	varname, usage := unquoteUsage(flag)
    	if varname != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/cmd/covdata/covdata.go

    	"cmd/internal/pkgpattern"
    	"cmd/internal/telemetry"
    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"strings"
    )
    
    var verbflag = flag.Int("v", 0, "Verbose trace output level")
    var hflag = flag.Bool("h", false, "Panic on fatal errors (for stack trace)")
    var hwflag = flag.Bool("hw", false, "Panic on warnings (for stack trace)")
    var indirsflag = flag.String("i", "", "Input dirs to examine (comma separated)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/globalflags.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	"k8s.io/component-base/cli/globalflag"
    
    	// ensure libs have a chance to globally register their flags
    	_ "k8s.io/apiserver/pkg/admission"
    )
    
    // AddCustomGlobalFlags explicitly registers flags that internal packages register
    // against the global flagsets from "flag". We do this in order to prevent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 07:44:58 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    	SIG_SETMASK = 0x3
    )
    
    type Siginfo struct {
    	Signo int32
    	Code  int32
    	Errno int32
    	_     int32
    	_     [112]byte
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Line   uint8
    	Cc     [23]uint8
    	Ispeed uint32
    	Ospeed uint32
    }
    
    type Taskstats struct {
    	Version                   uint16
    	Ac_exitcode               uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    	SIG_UNBLOCK = 0x2
    	SIG_SETMASK = 0x3
    )
    
    type Siginfo struct {
    	Signo int32
    	Code  int32
    	Errno int32
    	_     [116]byte
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Line   uint8
    	Cc     [23]uint8
    	Ispeed uint32
    	Ospeed uint32
    }
    
    type Taskstats struct {
    	Version                   uint16
    	Ac_exitcode               uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    	SIG_SETMASK = 0x2
    )
    
    type Siginfo struct {
    	Signo int32
    	Errno int32
    	Code  int32
    	_     int32
    	_     [112]byte
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Cc     [19]uint8
    	Line   uint8
    	Ispeed uint32
    	Ospeed uint32
    }
    
    type Taskstats struct {
    	Version                   uint16
    	Ac_exitcode               uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. istioctl/pkg/version/version.go

    	versionCmd.Flags().VisitAll(func(flag *pflag.Flag) {
    		if flag.Name == "short" {
    			err := flag.Value.Set("true")
    			if err != nil {
    				fmt.Fprintf(os.Stdout, "set flag %q as true failed due to error %v", flag.Name, err)
    			}
    		}
    		if flag.Name == "remote" {
    			err := flag.Value.Set("true")
    			if err != nil {
    				fmt.Fprintf(os.Stdout, "set flag %q as true failed due to error %v", flag.Name, err)
    			}
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go

    	SIG_SETMASK = 0x2
    )
    
    type Siginfo struct {
    	Signo int32
    	Errno int32
    	Code  int32
    	_     int32
    	_     [112]byte
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Line   uint8
    	Cc     [19]uint8
    	Ispeed uint32
    	Ospeed uint32
    }
    
    type Taskstats struct {
    	Version                   uint16
    	Ac_exitcode               uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    	SIG_UNBLOCK = 0x2
    	SIG_SETMASK = 0x3
    )
    
    type Siginfo struct {
    	Signo int32
    	Code  int32
    	Errno int32
    	_     [116]byte
    }
    
    type Termios struct {
    	Iflag  uint32
    	Oflag  uint32
    	Cflag  uint32
    	Lflag  uint32
    	Line   uint8
    	Cc     [23]uint8
    	Ispeed uint32
    	Ospeed uint32
    }
    
    type Taskstats struct {
    	Version                   uint16
    	Ac_exitcode               uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top