- Sort Score
- Result 10 results
- Languages All
Results 931 - 940 of 3,989 for Kull (0.17 sec)
-
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
String stateString = requestUrl.queryParameter("state"); ByteString state = stateString != null ? ByteString.decodeBase64(stateString) : null; Listener listener; synchronized (this) { listener = listeners.get(state); } if (code == null || listener == null) { return new MockResponse() .setResponseCode(404) .setBody("unexpected request"); }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
if ( tf.getConfig().isDfsDisabled() || tf.getCredentials().getUserDomain() == null || tf.getCredentials().getUserDomain().isEmpty() ) { return null; } if ( this._domains != null && System.currentTimeMillis() > this._domains.expiration ) { this._domains = null; } if ( this._domains != null ) return this._domains.map; try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
* comparably to {@link Collections#singletonList}, but will not accept a null element. It is * preferable mainly for consistency and maintainability of your code. * * @throws NullPointerException if the element is null */ public static <E> ImmutableList<E> of(E e1) { return construct(e1); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 27.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
} } final Integer id = fessConfig.getAvailableSmbSidType(type); if (id != null) { return createSearchRole(id, sid.getAccountName()); } if (logger.isDebugEnabled()) { logger.debug("Ignored SID: {} {}", type, sid); } return null; } public String getAccountId(final jcifs.smb1.smb1.SID sid) { final int type = sid.getType();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:58:21 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
return filterChain.execute(context, query, boost); } public void add(final String name, final QueryCommand queryCommand) { if (name == null || queryCommand == null) { throw new IllegalArgumentException("name or queryCommand is null."); } if (logger.isDebugEnabled()) { logger.debug("Loaded {}", name); } queryCommandMap.put(name, queryCommand); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListIndexOfTester.java
assertEquals(getMethodName() + "(nullNotPresent) should return -1", -1, find(null)); } @CollectionFeature.Require(absent = ALLOWS_NULL_VALUES) public void testFind_nullNotContainedAndUnsupported() { try { assertEquals(getMethodName() + "(nullNotPresent) should return -1 or throw", -1, find(null)); } catch (NullPointerException tolerated) { } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 3.3K bytes - Viewed (0) -
README.ja.md
クエリーログ(query_string)を解析してサジェストドキュメントを登録 ```java QueryLog queryLog = new QueryLog("field1:value1", null); suggester.indexer().indexFromQueryLog(queryLog); ``` ### Add suggest document from search words 検索語を解析してサジェストドキュメントを登録 ```java SuggestIndexResponse indexResponse = suggester.indexer().indexFromSearchWord("検索 エンジン", null, null, null, 1);
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Jul 27 10:00:55 UTC 2015 - 2.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TarExtractorTest.java
tarExtractor.setMaxContentSize(100); tarExtractor.getText(in, null); fail(); } catch (MaxLengthExceededException e) { // pass } tarExtractor.setMaxContentSize(-1); } public void test_getText_null() { try { tarExtractor.getText(null, null); fail(); } catch (final CrawlerSystemException e) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Pair.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableMap.java
@CheckForNull @Nullable ImmutableMapEntry<?, V>[] keyTable, int mask) { if (key == null || keyTable == null) { return null; } int index = Hashing.smear(key.hashCode()) & mask; for (ImmutableMapEntry<?, V> entry = keyTable[index]; entry != null; entry = entry.getNextInKeyBucket()) { Object candidateKey = entry.getKey(); /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 28 18:11:09 UTC 2024 - 16.2K bytes - Viewed (0)