Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 441 for Iflag (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.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.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/flag/flag.go

    // license that can be found in the LICENSE file.
    
    /*
    Package flag implements command-line flag parsing.
    
    # Usage
    
    Define flags using [flag.String], [Bool], [Int], etc.
    
    This declares an integer flag, -n, stored in the pointer nFlag, with type *int:
    
    	import "flag"
    	var nFlag = flag.Int("n", 1234, "help message for flag n")
    
    If you like, you can bind the flag to a variable using the Var() functions.
    
    	var flagvar int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. releasenotes/notes/add-overwrite-flag.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 51312
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 16:00:06 UTC 2024
    - 255 bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/globalflags.go

    func register(global *flag.FlagSet, local *pflag.FlagSet, globalName string) {
    	if f := global.Lookup(globalName); f != nil {
    		pflagFlag := pflag.PFlagFromGoFlag(f)
    		pflagFlag.Name = normalize(pflagFlag.Name)
    		local.AddFlag(pflagFlag)
    	} else {
    		panic(fmt.Sprintf("failed to find flag in global flagset (flag): %s", globalName))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top