Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Getrlimit (0.25 sec)

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

    	runtime.ExitSyscall()
    	prio = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrlimit(resource int, rlim *Rlimit) (err error) {
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_GETRLIMIT<<4, uintptr(resource), uintptr(unsafe.Pointer(rlim)))
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    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

    func Getpgrp() (pid int) {
    	pid, _ = Getpgid(0)
    	return
    }
    
    //sysnb	Getppid() (pid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(resource int, rlim *Rlimit) (err error) = SYS_GETRLIMIT
    
    //sysnb getrusage(who int, rusage *rusage_zos) (err error) = SYS_GETRUSAGE
    
    func Getrusage(who int, rusage *Rusage) (err error) {
    	var ruz rusage_zos
    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/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)
  4. 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