Home
last modified time | relevance | path

Searched refs:nice (Results 51 – 75 of 14527) sorted by relevance

12345678910>>...582

/dports/multimedia/v4l-utils/linux-5.13-rc2/Documentation/scheduler/
H A Dsched-nice-design.rst6 nice-levels implementation in the new Linux scheduler.
9 pestered us to make nice +19 tasks use up much less CPU time.
19 rule so that nice +19 level would be _exactly_ 1 jiffy. To better
34 -*----------------------------------*-----> [nice level]
49 people were running number crunching apps at nice +19.)
66 nice level as well, while the nice API itself is fundamentally
69 int nice(int inc);
75 bash's "nice" command mirror this relative API.
79 depend on the nice level of the parent shell - if it was at nice -10 the
101 scheduler, running a nice +10 and a nice 11 task has the same CPU
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/Documentation/scheduler/
H A Dsched-nice-design.rst6 nice-levels implementation in the new Linux scheduler.
9 pestered us to make nice +19 tasks use up much less CPU time.
19 rule so that nice +19 level would be _exactly_ 1 jiffy. To better
34 -*----------------------------------*-----> [nice level]
49 people were running number crunching apps at nice +19.)
66 nice level as well, while the nice API itself is fundamentally
69 int nice(int inc);
75 bash's "nice" command mirror this relative API.
79 depend on the nice level of the parent shell - if it was at nice -10 the
101 scheduler, running a nice +10 and a nice 11 task has the same CPU
[all …]
/dports/math/gap/gap-4.11.0/lib/
H A Dgrpnice.gd75 ## value of a nice monomorphism
309 local nice,img;
310 nice:=NiceMonomorphism(obj1);
348 local nice,img;
349 nice:=NiceMonomorphism(obj2);
381 local nice, img;
416 local nice, img;
452 local nice, img;
651 img:=ImagesSet(nice,obj2);
654 PreImagesSet(nice,img)=obj2) then
[all …]
H A Dgrpnice.gi38 # nice mono!
56 local nice;
71 local nice;
86 local nice;
95 #M GroupByNiceMonomorphism( <nice>, <group> ) construct group with nice obj
103 function( nice, grp )
127 local nice, img, D;
222 local nice, img;
771 local nice;
926 local nice;
[all …]
/dports/biology/garlic/garlic-1.6/
H A Dcolors.script8 bon nice
20 bon nice
26 bon nice
32 bon nice
38 bon nice
44 bon nice
50 bon nice
56 bon nice
62 bon nice
68 bon nice
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/Interop/Unix/System.Native/
H A DInterop.GetSetPriority.cs24 internal static extern int SetPriority(PriorityWhich which, int who, int nice); in SetPriority() argument
39 … internal static System.Diagnostics.ThreadPriorityLevel GetThreadPriorityFromNiceValue(int nice) in GetThreadPriorityFromNiceValue() argument
41 Debug.Assert((nice >= -20) && (nice <= 20)); in GetThreadPriorityFromNiceValue()
43 (nice < -15) ? ThreadPriorityLevel.TimeCritical : in GetThreadPriorityFromNiceValue()
44 (nice < -10) ? ThreadPriorityLevel.Highest : in GetThreadPriorityFromNiceValue()
45 (nice < -5) ? ThreadPriorityLevel.AboveNormal : in GetThreadPriorityFromNiceValue()
46 (nice == 0) ? ThreadPriorityLevel.Normal : in GetThreadPriorityFromNiceValue()
47 (nice <= 5) ? ThreadPriorityLevel.BelowNormal : in GetThreadPriorityFromNiceValue()
48 (nice <= 10) ? ThreadPriorityLevel.Lowest : in GetThreadPriorityFromNiceValue()
/dports/mail/p5-qpsmtpd/qpsmtpd-0.93/plugins/
H A Dkarma_tool73 my ($penalty_start_ts, $naughty, $nice, $connects) = split /:/,
76 $tied->{$key} = join(':', time, $naughty + 1, $nice, $connects);
90 my ($penalty_start_ts, $naughty, $nice, $connects) = split /:/,
93 $tied->{$key} = join(':', 0, 0, $nice, $connects);
105 my ($penalty_start_ts, $naughty, $nice, $connects) = split /:/,
108 $nice ||= 0;
137 $nice ||= '';
143 next if !$nice;
149 next if !$naughty || !$nice;
160 if ($naughty && $nice) {
[all …]
H A Dkarma274 my ($penalty_start_ts, $naughty, $nice, $connects) =
276 $self->calc_karma($naughty, $nice);
300 my ($penalty_start_ts, $naughty, $nice, $connects) =
303 my $karma = $self->calc_karma($naughty, $nice);
403 my $history = ($nice || 0) - $naughty;
410 if ($nice == 0 && $history < -5) {
424 $nice++;
453 $nice ||= 0;
461 my ($self, $naughty, $nice) = @_;
462 return 0 if (!$naughty && !$nice);
[all …]
/dports/graphics/p5-Chart-Clicker/Chart-Clicker-2.90/lib/Chart/Clicker/Axis/DivisionType/
H A DLinearExpandGraph.pm51 my $nice;
55 $nice = 1.5;
57 $nice = 2;
59 $nice = 5;
61 $nice = 10;
65 $nice = 1;
67 $nice = 2;
69 $nice = 5;
71 $nice = 10;
75 return $nice * (10 ** $exp);
/dports/net/storj/storj-1.45.3/vendor/github.com/loov/hrtime/
H A Dhistogram_bounds.go22 var nice float64
26 nice = 1
28 nice = 2
30 nice = 5
32 nice = 10
37 nice = 1
39 nice = 2
41 nice = 5
43 nice = 10
47 return nice * math.Pow(10, exp)
/dports/devel/p5-BSD-Resource/BSD-Resource-1.2911/t/
H A Dsetpriority.t11 my $nice = 0;
13 my $ps = "ps -o pid,nice";
18 $nice = $1;
35 if (open(NICE, "nice|")) {
36 chomp($nice = <NICE>);
37 unless ($nice =~ /^-?\d+$/) {
38 print "# nice returned: '$nice'\n";
39 $nice = 0;
42 print "# nice failed: $!\n";
50 print "# nice = $nice\n";
[all …]
/dports/x11-toolkits/tk87/tk8.7a5/tests/
H A Dbell.test15 } -returnCodes {error} -result {bad option "a": must be -displayof or -nice}
19 } -returnCodes {error} -result {bad option "a": must be -displayof or -nice}
26 bell -nice -displayof
27 } -returnCodes {error} -result {wrong # args: should be "bell ?-displayof window? ?-nice?"}
30 bell -nice -nice -nice
34 bell -displayof . -nice
38 bell -nice -displayof . -nice
39 } -returnCodes {error} -result {wrong # args: should be "bell ?-displayof window? ?-nice?"}
47 bell -nice
/dports/x11-toolkits/tk85/tk8.5.19/tests/
H A Dbell.test14 } {1 {bad option "a": must be -displayof or -nice}}
17 } {1 {bad option "a": must be -displayof or -nice}}
22 list [catch {bell -nice -displayof} msg] $msg
23 } {1 {wrong # args: should be "bell ?-displayof window? ?-nice?"}}
25 list [catch {bell -nice -nice -nice} msg] $msg
28 list [catch {bell -displayof . -nice} msg] $msg
31 list [catch {bell -nice -displayof . -nice} msg] $msg
32 } {1 {wrong # args: should be "bell ?-displayof window? ?-nice?"}}
39 bell -nice
/dports/x11-toolkits/tk86/tk8.6.12/tests/
H A Dbell.test15 } -returnCodes {error} -result {bad option "a": must be -displayof or -nice}
19 } -returnCodes {error} -result {bad option "a": must be -displayof or -nice}
26 bell -nice -displayof
27 } -returnCodes {error} -result {wrong # args: should be "bell ?-displayof window? ?-nice?"}
30 bell -nice -nice -nice
34 bell -displayof . -nice
38 bell -nice -displayof . -nice
39 } -returnCodes {error} -result {wrong # args: should be "bell ?-displayof window? ?-nice?"}
47 bell -nice
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/nice-try/
H A DREADME.md1 # nice-try
3nice-try.svg?branch=master)](https://travis-ci.org/electerious/nice-try) [![AppVeyor Status](https…
10 npm install nice-try
16 const niceTry = require('nice-try')
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/node_modules/nice-try/
H A DREADME.md1 # nice-try
3nice-try.svg?branch=master)](https://travis-ci.org/electerious/nice-try) [![AppVeyor Status](https…
10 npm install nice-try
16 const niceTry = require('nice-try')
/dports/textproc/write-good/write-good-1.0.8/node_modules/nice-try/
H A DREADME.md1 # nice-try
3nice-try.svg?branch=master)](https://travis-ci.org/electerious/nice-try) [![AppVeyor Status](https…
10 npm install nice-try
16 const niceTry = require('nice-try')
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/tera-1.12.0/docs/node_modules/nice-try/
H A DREADME.md1 # nice-try
3nice-try.svg?branch=master)](https://travis-ci.org/electerious/nice-try) [![AppVeyor Status](https…
10 npm install nice-try
16 const niceTry = require('nice-try')
/dports/lang/rust/rustc-1.58.1-src/vendor/tera/docs/node_modules/nice-try/
H A DREADME.md1 # nice-try
3nice-try.svg?branch=master)](https://travis-ci.org/electerious/nice-try) [![AppVeyor Status](https…
10 npm install nice-try
16 const niceTry = require('nice-try')
/dports/benchmarks/py-naarad/naarad-1.0.15/examples/logs/
H A Dsar.cpuusage.out3 09:36:28 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
30 09:36:29 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
57 09:36:30 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
84 09:36:31 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
111 09:36:32 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
138 09:36:33 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
165 09:36:34 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
192 09:36:35 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
219 09:36:36 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
246 09:36:37 AM CPU %usr %nice %sys %iowait %steal %irq %soft %guest…
[all …]
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/nice-try/
H A DREADME.md1 # nice-try
3nice-try.svg?branch=master)](https://travis-ci.org/electerious/nice-try) [![AppVeyor Status](https…
10 npm install nice-try
16 const niceTry = require('nice-try')
/dports/net/nncp/nncp-8.0.2/src/
H A Dnice_test.go9 var nice uint8
10 for nice = 1; nice > 0; nice++ {
11 s := NicenessFmt(nice)
13 if err != nil || parsed != nice {
17 if err != nil || parsed != nice {
/dports/mail/spamassassin-devel/spamassassin-1ea352210/rulesrc/sandbox/felicity/
H A D70_iadb.cf68 #tflags __RCVD_IN_IADB net nice
72 #tflags RCVD_IN_IADB_VOUCHED net nice
76 tflags RCVD_IN_IADB_LISTED net nice
83 tflags RCVD_IN_IADB_EDDB net nice
88 tflags RCVD_IN_IADB_EPIA net nice
93 tflags RCVD_IN_IADB_SPF net nice
103 tflags RCVD_IN_IADB_DK net nice
108 tflags RCVD_IN_IADB_RDNS net nice
150 tflags RCVD_IN_IADB_LOOSE net nice
165 tflags RCVD_IN_IADB_OPTIN net nice
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/gcc.target/m68k/
H A Dcrash1.c11 long long nice; member
23 long long user, nice, system, idle, steal; in show_stat() local
26 user = nice = system = idle = steal = 0; in show_stat()
31 nice = nice + per_cpu__kstat.nice; in show_stat()
39 seq_printf(user, nice, system, idle, steal); in show_stat()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.target/m68k/
H A Dcrash1.c11 long long nice; member
23 long long user, nice, system, idle, steal; in show_stat() local
26 user = nice = system = idle = steal = 0; in show_stat()
31 nice = nice + per_cpu__kstat.nice; in show_stat()
39 seq_printf(user, nice, system, idle, steal); in show_stat()

12345678910>>...582