Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 424 for flagstr (0.12 sec)

  1. src/text/tabwriter/tabwriter.go

    	b.tabwidth = tabwidth
    	b.padding = padding
    	for i := range b.padbytes {
    		b.padbytes[i] = padchar
    	}
    	if padchar == '\t' {
    		// tab padding enforces left-alignment
    		flags &^= AlignRight
    	}
    	b.flags = flags
    
    	b.reset()
    
    	return b
    }
    
    // debugging support (keep code around)
    func (b *Writer) dump() {
    	pos := 0
    	for i, line := range b.lines {
    		print("(", i, ") ")
    		for _, c := range line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/output/output.go

    type PrintFlags struct {
    	// JSONYamlPrintFlags provides default flags necessary for json/yaml printing.
    	JSONYamlPrintFlags *genericclioptions.JSONYamlPrintFlags
    	// KubeTemplatePrintFlags composes print flags that provide both a JSONPath and a go-template printer.
    	KubeTemplatePrintFlags *genericclioptions.KubeTemplatePrintFlags
    	// TextPrintFlags provides default flags necessary for kubeadm text printing.
    	TextPrintFlags TextPrintFlags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/select.go

    func goInstallVersion() bool {
    	// Note: We assume there are no flags between 'go' and 'install' or 'run'.
    	// During testing there are some debugging flags that are accepted
    	// in that position, but in production go binaries there are not.
    	if len(os.Args) < 3 {
    		return false
    	}
    
    	var cmdFlags *flag.FlagSet
    	switch os.Args[1] {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    			return
    		}
    	}
    
    	flags = sys.Cloneflags
    	if sys.Cloneflags&CLONE_NEWUSER == 0 && sys.Unshareflags&CLONE_NEWUSER == 0 {
    		flags |= CLONE_VFORK | CLONE_VM
    	}
    	if sys.PidFD != nil {
    		flags |= CLONE_PIDFD
    	}
    	// Whether to use clone3.
    	if sys.UseCgroupFD || flags&CLONE_NEWTIME != 0 || forceClone3 {
    		clone3 = &cloneArgs{
    			flags:      uint64(flags),
    			exitSignal: uint64(SIGCHLD),
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		RunDespiteErrors bool
    		ResultType       reflect.Type
    		Requires         []*Analyzer
    		FactTypes        []Fact
    	}
    
    The Flags field declares a set of named (global) flag variables that
    control analysis behavior. Unlike vet, analysis flags are not declared
    directly in the command line FlagSet; it is up to the driver to set the
    flag variables. A driver for a single analysis, a, might expose its flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

            CacheableCallSite ccs = toGroovyCacheableCallSite(originalCallSite);
            switch (callType) {
                case "invoke":
                    maybeApplyInterceptor(ccs, caller, flags, interceptors.get(InterceptScope.methodsNamed(name)));
                    break;
                case "getProperty":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/start_windows.go

    	// Set DETACHED_PROCESS creation flag so that closing
    	// the console window the parent process was run in
    	// does not kill the child.
    	// See documentation of creation flags in the Microsoft documentation:
    	// https://learn.microsoft.com/en-us/windows/win32/procthread/process-creation-flags
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		CreationFlags: windows.DETACHED_PROCESS,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 732 bytes
    - Viewed (0)
  8. src/syscall/syscall_aix.go

    //sys	recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error)
    //sys	sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error)
    //sys	Shutdown(s int, how int) (err error)
    
    // In order to use msghdr structure with Control, Controllen in golang.org/x/net,
    // nrecvmsg and nsendmsg must be used.
    //sys	recvmsg(s int, msg *Msghdr, flags int) (n int, err error) = nrecvmsg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd2.go

    //
    //go:nosplit
    func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (unsafe.Pointer, int) {
    	args := struct {
    		addr            unsafe.Pointer
    		n               uintptr
    		prot, flags, fd int32
    		off             uint32
    		ret1            unsafe.Pointer
    		ret2            int
    	}{addr, n, prot, flags, fd, off, nil, 0}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(mmap_trampoline)), unsafe.Pointer(&args))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/eaccess_bsd.go

    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func faccessat(dirfd int, path string, mode uint32, flags int) error {
    	p, err := syscall.BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    	_, _, errno := syscall.Syscall6(syscall.SYS_FACCESSAT, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(mode), uintptr(flags), 0, 0)
    	if errno != 0 {
    		return errno
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:36:52 UTC 2024
    - 708 bytes
    - Viewed (0)
Back to top