Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for setPriority (0.46 sec)

  1. 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,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 13 14:28:25 GMT 2024
    - 46.8K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_SETPGID = 82 #53466
    pkg syscall (freebsd-riscv64), const SYS_SETPGID ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_SETPRIORITY = 96 #53466
    pkg syscall (freebsd-riscv64), const SYS_SETPRIORITY ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_SETREGID = 127 #53466
    pkg syscall (freebsd-riscv64), const SYS_SETREGID ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_SETPGID = 82
    pkg syscall (darwin-arm64), const SYS_SETPGID ideal-int
    pkg syscall (darwin-arm64), const SYS_SETPRIORITY = 96
    pkg syscall (darwin-arm64), const SYS_SETPRIORITY ideal-int
    pkg syscall (darwin-arm64), const SYS_SETPRIVEXEC = 152
    pkg syscall (darwin-arm64), const SYS_SETPRIVEXEC ideal-int
    pkg syscall (darwin-arm64), const SYS_SETREGID = 127
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_SETPGID = 82
    pkg syscall (freebsd-arm64), const SYS_SETPGID ideal-int
    pkg syscall (freebsd-arm64), const SYS_SETPRIORITY = 96
    pkg syscall (freebsd-arm64), const SYS_SETPRIORITY ideal-int
    pkg syscall (freebsd-arm64), const SYS_SETREGID = 127
    pkg syscall (freebsd-arm64), const SYS_SETREGID ideal-int
    pkg syscall (freebsd-arm64), const SYS_SETRESGID = 312
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. 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"));
                }
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  6. 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"));
                }
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ingest/IngestFactoryTest.java

            factory.add(new TestIngester(3));
            Ingester[] ingesters = factory.getIngesters();
            assertEquals(1, ingesters[0].getPriority());
            assertEquals(2, ingesters[1].getPriority());
            assertEquals(3, ingesters[2].getPriority());
        }
    
        public void test_add_2() {
            IngestFactory factory = new IngestFactory();
            factory.add(new TestIngester(3));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/score/ScoreUpdater.java

            return resultBuf.toString();
        }
    
        protected void addScoreBooster(final ScoreBooster scoreBooster) {
            scoreBoosterList.add(scoreBooster);
            scoreBoosterList.sort((b1, b2) -> b2.getPriority() - b1.getPriority());
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadataGeneratorFactory.java

            return new VersionsMetadataGenerator(session, request);
        }
    
        @SuppressWarnings("checkstyle:magicnumber")
        @Override
        public float getPriority() {
            return 20; // GA level metadata should be deployed 2nd MD
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnectorFactory.java

                throws NoRepositoryConnectorException {
            return new TestRepositoryConnector(repository);
        }
    
        public float getPriority() {
            return 0;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
Back to top