Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 424 for flagstr (0.19 sec)

  1. src/syscall/syscall_darwin.go

    		p[1] = int(q[1])
    	}
    	return
    }
    
    func Getfsstat(buf []Statfs_t, flags int) (n int, err error) {
    	var _p0 unsafe.Pointer
    	var bufsize uintptr
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    		bufsize = unsafe.Sizeof(Statfs_t{}) * uintptr(len(buf))
    	}
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_getfsstat_trampoline), uintptr(_p0), bufsize, uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/eaccess_openbsd.go

    //go:cgo_import_dynamic libc_faccessat faccessat "libc.so"
    
    func faccessat(dirfd int, path string, mode uint32, flags int) error {
    	p, err := syscall.BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    	_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_faccessat_trampoline), 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
    - 946 bytes
    - Viewed (0)
  3. src/cmd/covdata/covdata.go

    	dbgtrace(1, "starting perform")
    
    	indirs := strings.Split(*indirsflag, ",")
    	vis := cov.CovDataVisitor(op)
    	var flags cov.CovDataReaderFlags
    	if *hflag {
    		flags |= cov.PanicOnError
    	}
    	if *hwflag {
    		flags |= cov.PanicOnWarning
    	}
    	reader := cov.MakeCovDataReader(vis, indirs, *verbflag, flags, matchpkg)
    	st := 0
    	if err := reader.Visit(); err != nil {
    		fmt.Fprintf(os.Stderr, "error: %v\n", err)
    		st = 1
    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. tensorflow/compiler/jit/BUILD

            ],
            "//conditions:default": [
                "//tensorflow/core:graph",
            ],
        }),
    )
    
    cc_library(
        name = "flags",
        srcs = ["flags.cc"],
        hdrs = ["flags.h"],
        visibility = [":friends"],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow:dump_graph",
            "//tensorflow/core:framework_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/ipvs_linux.go

    	}
    
    	// Test FlagHashed (0x2). A valid flag must include FlagHashed
    	if svc.Flags&FlagHashed == 0 {
    		return nil, fmt.Errorf("Flags of successfully created IPVS service should enable the flag (%x) since every service is hashed into the service table", FlagHashed)
    	}
    	// Sub Flags to 0x2
    	// 011 -> 001, 010 -> 000
    	vs.Flags = ServiceFlags(svc.Flags &^ uint32(FlagHashed))
    
    	if vs.Address == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. src/runtime/signal_unix.go

    		// may have been coalesced with another signal, so we
    		// still let it through to the application.
    	}
    
    	flags := int32(_SigThrow)
    	if sig < uint32(len(sigtable)) {
    		flags = sigtable[sig].flags
    	}
    	if !c.sigFromUser() && flags&_SigPanic != 0 && (gp.throwsplit || gp != mp.curg) {
    		// We can't safely sigpanic because it may grow the
    		// stack. Abort in the signal handler instead.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/internal/testdir/testdir_test.go

    			runenv = append(runenv, "GODEBUG="+godebug)
    
    		default:
    			flags = append(flags, args[0])
    		}
    		args = args[1:]
    	}
    	if action == "errorcheck" {
    		found := false
    		for i, f := range flags {
    			if strings.HasPrefix(f, "-d=") {
    				flags[i] = f + ",ssa/check/on"
    				found = true
    				break
    			}
    		}
    		if !found {
    			flags = append(flags, "-d=ssa/check/on")
    		}
    	}
    
    	tempDir := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. 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)
Back to top