Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for setrlimit (0.13 sec)

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

    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setrlimit(resource int, lim *Rlimit) (err error) {
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_SETRLIMIT<<4, uintptr(resource), uintptr(unsafe.Pointer(lim)))
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys   Setns(fd int, nstype int) (err error) = SYS_SETNS
    //sys	Setpriority(which int, who int, prio int) (err error)
    //sysnb	Setpgid(pid int, pgid int) (err error) = SYS_SETPGID
    //sysnb	Setrlimit(resource int, lim *Rlimit) (err error)
    //sysnb	Setregid(rgid int, egid int) (err error) = SYS_SETREGID
    //sysnb	Setreuid(ruid int, euid int) (err error) = SYS_SETREUID
    //sysnb	Setsid() (pid int, err error) = SYS_SETSID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		// Skip over segments with zero file size. Their file offsets can have
    		// arbitrary values, see b/195427553.
    		if p.Filesz == 0 {
    			continue
    		}
    		segLimit := p.Off + p.Memsz
    		// The segment must overlap the mapping.
    		if p.Type == elf.PT_LOAD && mapOff < segLimit && p.Off < mapLimit {
    			// If the mapping offset is strictly less than the page aligned segment
    			// offset, then this mapping comes from a different segment, fixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    // external network in parallel. If non-nil, it contains one buffer slot per
    // test (send to acquire), with a low enough limit that the overall number of
    // connections (summed across subprocesses) stays at or below base.NetLimit.
    var netTestSem chan struct{}
    
    var exeSuffix string = func() string {
    	if runtime.GOOS == "windows" {
    		return ".exe"
    	}
    	return ""
    }()
    
    func tooSlow(t *testing.T, reason string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (result_type.hasStaticShape()) {
          return failure();
        }
    
        Value start = op.getStart();
        Value delta = op.getDelta();
        Value limit = op.getLimit();
    
        // To compute the length we need to use floating point calculations so that
        // ceil can be computed for the number of steps.
        auto compute_element_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top