Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for Setpriority (0.22 sec)

  1. src/syscall/zsyscall_openbsd_ppc64.go

    func Getpriority(which int, who int) (prio int, err error) {
    	r0, _, e1 := syscall(abi.FuncPCABI0(libc_getpriority_trampoline), uintptr(which), uintptr(who), 0)
    	prio = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_getpriority_trampoline()
    
    //go:cgo_import_dynamic libc_getpriority getpriority "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)
  2. 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)
  3. 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)
  4. src/syscall/syscall_linux.go

    //sysnb	Getpgid(pid int) (pgid int, err error)
    
    func Getpgrp() (pid int) {
    	pid, _ = Getpgid(0)
    	return
    }
    
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Gettid() (tid int)
    //sys	Getxattr(path string, attr string, dest []byte) (sz int, 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)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func Getppid() (pid int) {
    	r0, _, _ := CallLeFuncWithErr(GetZosLibVec() + SYS_GETPPID<<4)
    	pid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getpriority(which int, who int) (prio int, err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_GETPRIORITY<<4, uintptr(which), uintptr(who))
    	runtime.ExitSyscall()
    	prio = int(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sysnb	Getpid() (pid int)
    //sysnb	Getpgid(pid int) (pgid int, err error) = SYS_GETPGID
    
    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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DaemonCompatibilitySpec.java

                    // ignore
                }
            }
            return false;
        }
    
        private boolean priorityMatches(DaemonContext context) {
            return desiredContext.getPriority() == context.getPriority();
        }
    
        private boolean agentStatusMatches(DaemonContext context) {
            return desiredContext.shouldApplyInstrumentationAgent() == context.shouldApplyInstrumentationAgent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java

                    PluginExecution source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
                if (target.getPriority() > source.getPriority()) {
                    builder.priority(source.getPriority());
                    builder.location("priority", source.getLocation("priority"));
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultLifecycleBindingsInjector.java

                    PluginExecution source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
                if (target.getPriority() > source.getPriority()) {
                    builder.priority(source.getPriority());
                    builder.location("priority", source.getLocation("priority"));
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.6K 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