- Sort Score
- Result 10 results
- Languages All
Results 1741 - 1750 of 3,883 for void (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/SystemHelper.java
if (logger.isDebugEnabled()) { logger.debug("Search Role: {}:{}={}", type, name, value); } return value; } public void reloadConfiguration() { reloadConfiguration(true); } public void reloadConfiguration(final boolean resetJobs) { ComponentUtil.getSearchEngineClient().refresh(); ComponentUtil.getSuggestHelper().init();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/StatsAccumulatorTest.java
} public void testVerifyMegaStreamHalves() { assertThat( concat(megaPrimitiveDoubleStreamPart1(), megaPrimitiveDoubleStreamPart2()) .sorted() .toArray()) .isEqualTo(megaPrimitiveDoubleStream().toArray()); } public void testAddAllPrimitiveDoubleStream() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 36.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
key8[i] = (byte)( key8[i] << 1); } } /// Set the key. public void setKey( byte[] key ) { // CHECK PAROTY TBD deskey( key, true, encryptKeys ); deskey( key, false, decryptKeys ); } // Turn an 8-byte key into internal keys. private void deskey( byte[] keyBlock, boolean encrypting, int[] KnL ) { int i, j, l, m, n;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 21.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
} } /** * Update digest with data * * @param input * @param offset * @param len */ public void update ( byte[] input, int offset, int len ) { if ( log.isTraceEnabled() ) { log.trace("update: " + this.updates + " " + offset + ":" + len);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 10.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/normalizer/ICUNormalizerTest.java
public class ICUNormalizerTest extends TestCase { public void test_FullwidthHalfwidth() { ICUNormalizer normalizer = new ICUNormalizer("Fullwidth-Halfwidth"); assertEquals("abcd", normalizer.normalize("abcd", null)); assertEquals("みかん", normalizer.normalize("みかん", null)); assertEquals("みかん リンゴ", normalizer.normalize("みかん リンゴ", null)); } public void test_AnyLower() {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
@Resource private WebConfigBhv webConfigBhv; @Resource private FileConfigBhv fileConfigBhv; @Resource private LabelTypeBhv labelTypeBhv; @Override protected void setupHtmlData(final ActionRuntime runtime) { super.setupHtmlData(runtime); runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameBackup())); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/MoreExecutors.java
} } })); } @VisibleForTesting void addShutdownHook(Thread hook) { Runtime.getRuntime().addShutdownHook(hook); } } @J2ktIncompatible @GwtIncompatible // TODO private static void useDaemonThreadFactory(ThreadPoolExecutor executor) { executor.setThreadFactory( new ThreadFactoryBuilder()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 44.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
} } } return null; } public void getArtifact(Artifact artifact, ArtifactRepository repository) throws TransferFailedException, ResourceDoesNotExistException { getArtifact(artifact, repository, null, false); } public void getArtifact(Artifact artifact, List<ArtifactRepository> remoteRepositories)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java
@Override public Optional<Boolean> help() { return returnFirstPresentOrEmpty(Options::help); } @Override public void warnAboutDeprecatedOptions(ParserRequest request, Consumer<String> printWriter) {} @Override public void displayHelp(ParserRequest request, Consumer<String> printWriter) { options.get(0).displayHelp(request, printWriter); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FakeTimeLimiter.java
return callWithTimeout(callable, timeoutDuration, timeoutUnit); } @Override @SuppressWarnings("CatchingUnchecked") // sneaky checked exception public void runWithTimeout(Runnable runnable, long timeoutDuration, TimeUnit timeoutUnit) { checkNotNull(runnable); checkNotNull(timeoutUnit); try { runnable.run(); } catch (Exception e) { // sneaky checked exception
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 3.5K bytes - Viewed (0)