Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for setpriority (0.19 sec)

  1. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_Setgid setgid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Setuid setuid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Setpgid setpgid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Setpriority setpriority "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Setregid setregid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Setreuid setreuid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_386.go

    func Setpriority(which int, who int, prio int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setpriority_trampoline()
    
    //go:cgo_import_dynamic libc_setpriority setpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_openbsd_riscv64.go

    func Setpriority(which int, who int, prio int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setpriority_trampoline()
    
    //go:cgo_import_dynamic libc_setpriority setpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_amd64.go

    func Setpriority(which int, who int, prio int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setpriority_trampoline()
    
    //go:cgo_import_dynamic libc_setpriority setpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_arm64.go

    func Setpriority(which int, who int, prio int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setpriority_trampoline()
    
    //go:cgo_import_dynamic libc_setpriority setpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_ppc64.go

    func Setpriority(which int, who int, prio int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_setpriority_trampoline), uintptr(which), uintptr(who), uintptr(prio))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_setpriority_trampoline()
    
    //go:cgo_import_dynamic libc_setpriority setpriority "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        // Sleep for enough time to add 1500 milliseconds of overwait to the get() call.
        long toWaitMillis = 3500 - TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - thread.startTime);
        Thread.sleep(toWaitMillis);
        thread.setPriority(Thread.MAX_PRIORITY);
        thread.resume();
        thread.join();
        // It's possible to race and suspend the thread just before the park call actually takes effect,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        // Sleep for enough time to add 1500 milliseconds of overwait to the get() call.
        long toWaitMillis = 3500 - TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - thread.startTime);
        Thread.sleep(toWaitMillis);
        thread.setPriority(Thread.MAX_PRIORITY);
        thread.resume();
        thread.join();
        // It's possible to race and suspend the thread just before the park call actually takes effect,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux.go

    			err = errnoErr(e1)
    		}
    	} else if ret := cgocaller(cgo_libc_setuid, uintptr(uid)); ret != 0 {
    		err = errnoErr(Errno(ret))
    	}
    	return
    }
    
    //sys	Setpriority(which int, who int, prio int) (err error)
    //sys	Setxattr(path string, attr string, data []byte, flags int) (err error)
    //sys	Sync()
    //sysnb	Sysinfo(info *Sysinfo_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            } else {
                daemonParameters.applyDefaultsFor(JavaLanguageVersion.current());
                return new DaemonRequestContext(Jvm.current(), daemonParameters.getRequestedJvmCriteria(), daemonParameters.getEffectiveJvmArgs(), daemonParameters.shouldApplyInstrumentationAgent(), daemonParameters.getNativeServicesMode(), daemonParameters.getPriority());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top