Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 416 for flagstr (0.22 sec)

  1. src/syscall/zsysnum_openbsd_riscv64.go

    	SYS_ACCESS         = 33  // { int sys_access(const char *path, int amode); }
    	SYS_CHFLAGS        = 34  // { int sys_chflags(const char *path, u_int flags); }
    	SYS_FCHFLAGS       = 35  // { int sys_fchflags(int fd, u_int flags); }
    	SYS_SYNC           = 36  // { void sys_sync(void); }
    	SYS_MSYSCALL       = 37  // { int sys_msyscall(void *addr, size_t len); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. internal/grid/muxclient.go

    	}
    	m.init = true
    	m.singleResp = true
    	msg := message{
    		Op:         OpRequest,
    		MuxID:      m.MuxID,
    		Handler:    h,
    		Flags:      m.BaseFlags | FlagEOF,
    		Payload:    req,
    		DeadlineMS: uint32(m.deadline.Milliseconds()),
    	}
    	if m.subroute != nil {
    		msg.Flags |= FlagSubroute
    	}
    	ch := make(chan Response, 1)
    	m.respMu.Lock()
    	if m.closed {
    		m.respMu.Unlock()
    		return nil, ErrDisconnected
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    	}
    }
    
    // Note that flags consulted by other parts of the code
    // (for example, buildV) are in cmd/go/internal/cfg.
    
    var (
    	forcedAsmflags   []string // internally-forced flags for cmd/asm
    	forcedGcflags    []string // internally-forced flags for cmd/compile
    	forcedLdflags    []string // internally-forced flags for cmd/link
    	forcedGccgoflags []string // internally-forced flags for gccgo
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/options_test.go

    )
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.PanicOnError)
    	s := NewOptions()
    	var fss cliflag.NamedFlagSets
    	s.AddFlags(&fss)
    	for _, f := range fss.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	args := []string{
    		"--enable-admission-plugins=AlwaysDeny",
    		"--admission-control-config-file=/admission-control-config",
    		"--advertise-address=192.168.10.10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_arm.go

    	Len  uint16
    	Type uint16
    }
    
    type IfInfomsg struct {
    	Family     uint8
    	X__ifi_pad uint8
    	Type       uint16
    	Index      int32
    	Flags      uint32
    	Change     uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/token.go

    	bto.AddTTLFlagWithName(createCmd.Flags(), "ttl")
    	bto.AddUsagesFlag(createCmd.Flags())
    	bto.AddGroupsFlag(createCmd.Flags())
    	bto.AddDescriptionFlag(createCmd.Flags())
    
    	tokenCmd.AddCommand(createCmd)
    	tokenCmd.AddCommand(newCmdTokenGenerate(out))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_386.go

    	Len  uint16
    	Type uint16
    }
    
    type IfInfomsg struct {
    	Family     uint8
    	X__ifi_pad uint8
    	Type       uint16
    	Index      int32
    	Flags      uint32
    	Change     uint32
    }
    
    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/options/authentication_test.go

    		},
    		{
    			name: "issuer url set, client id is not set",
    			args: []string{
    				"--oidc-issuer-url=https://testIssuerURL",
    				"--oidc-username-claim=testClaim",
    			},
    			expectErr: "oidc-issuer-url and oidc-client-id must be specified together when any oidc-* flags are set",
    		},
    		{
    			name: "issuer url is not set, client id is set",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_openbsd_arm.go

    func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(p) > 0 {
    		_p0 = unsafe.Pointer(&p[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := syscall6(abi.FuncPCABI0(libc_recvfrom_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/edit.go

    but a different target file can be specified after the editing flags.
    
    The editing flags specify a sequence of editing operations.
    
    The -fmt flag reformats the go.mod file without making other changes.
    This reformatting is also implied by any other modifications that use or
    rewrite the go.mod file. The only time this flag is needed is if no other
    flags are specified, as in 'go mod edit -fmt'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top