Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for flagstr (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    	r0, _, e1 := sysvicall6(uintptr(unsafe.Pointer(&proc__xnet_recvmsg)), 3, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags), 0, 0, 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    		[]ProgHeader{
    			{Type: PT_NOTE, Flags: 0x0, Off: 0x3f8, Vaddr: 0x0, Paddr: 0x0, Filesz: 0x8ac, Memsz: 0x0, Align: 0x0},
    			{Type: PT_LOAD, Flags: PF_X + PF_R, Off: 0x1000, Vaddr: 0x400000, Paddr: 0x0, Filesz: 0x0, Memsz: 0x1000, Align: 0x1000},
    			{Type: PT_LOAD, Flags: PF_R, Off: 0x1000, Vaddr: 0x401000, Paddr: 0x0, Filesz: 0x1000, Memsz: 0x1000, Align: 0x1000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_darwin_amd64.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: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	cgoCtxt int
    
    	// calleeFuncID is the function ID of the caller of the current
    	// frame.
    	calleeFuncID abi.FuncID
    
    	// flags are the flags to this unwind. Some of these are updated as we
    	// unwind (see the flags documentation).
    	flags unwindFlags
    }
    
    // init initializes u to start unwinding gp's stack and positions the
    // iterator on gp's innermost frame. gp must not be the current G.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    )
    
    func (t *Type) NotInHeap() bool  { return t.flags&typeNotInHeap != 0 }
    func (t *Type) Noalg() bool      { return t.flags&typeNoalg != 0 }
    func (t *Type) Deferwidth() bool { return t.flags&typeDeferwidth != 0 }
    func (t *Type) Recur() bool      { return t.flags&typeRecur != 0 }
    func (t *Type) IsShape() bool    { return t.flags&typeIsShape != 0 }
    func (t *Type) HasShape() bool   { return t.flags&typeHasShape != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      debug_options.deterministic_cluster_names =
          flags->tf_xla_deterministic_cluster_names;
      debug_options.max_cluster_size = flags->tf_xla_max_cluster_size;
      debug_options.min_cluster_size = flags->tf_xla_min_cluster_size;
      debug_options.fuel = GetPointerToFuel(flags->tf_xla_clustering_fuel);
      debug_options.dump_graphs = flags->tf_xla_clustering_debug;
    
      return MarkForCompilation(options, debug_options);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    		return v > 0
    	}
    	// On ID mismatch
    	if v := bytes.Compare(x.VersionID[:], o.VersionID[:]); v != 0 {
    		return v > 0
    	}
    	// Flags
    	if x.Flags != o.Flags {
    		return x.Flags > o.Flags
    	}
    	return false
    }
    
    func (j xlMetaV2Version) getDataDir() string {
    	if j.Valid() {
    		switch j.Type {
    		case LegacyType:
    			return j.ObjectV1.DataDir
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    	Fsymptr  uint64 // Byte offset to symbol table start
    	Fopthdr  uint16 // Number of bytes in optional header
    	Fflags   uint16 // Flags
    	Fnsyms   int32  // Number of entries in symbol table
    }
    
    const (
    	U64_TOCMAGIC = 0767 // AIX 64-bit XCOFF
    )
    
    // Flags that describe the type of the object file.
    const (
    	F_RELFLG    = 0x0001
    	F_EXEC      = 0x0002
    	F_LNNO      = 0x0004
    	F_FDPR_PROF = 0x0010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	}
    }
    
    // evaluate an ARM64 op against a flags value
    // that is potentially constant; return 1 for true,
    // -1 for false, and 0 for not constant.
    func ccARM64Eval(op Op, flags *Value) int {
    	fop := flags.Op
    	if fop == OpARM64InvertFlags {
    		return -ccARM64Eval(op, flags.Args[0])
    	}
    	if fop != OpARM64FlagConstant {
    		return 0
    	}
    	fc := flagConstant(flags.AuxInt)
    	b2i := func(b bool) int {
    		if b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

              $flags+=" --config.custom-plugin-monitor={0}" -f ($custom_plugin_monitors -join ",")
            }
          }
          else {
            $flags = ${kube_env}['NODE_PROBLEM_DETECTOR_CUSTOM_FLAGS']
          }
          $kubernetes_master_name = ${kube_env}['KUBERNETES_MASTER_NAME']
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top