- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 3,633 for NULL (0.09 sec)
-
guava-tests/test/com/google/common/collect/RegularImmutableAsListTest.java
/** * RegularImmutableAsList should assume its input is null-free without checking, because it only * gets invoked from other immutable collections. */ public void testDoesntCheckForNull() { ImmutableSet<Integer> set = ImmutableSet.of(1, 2, 3); ImmutableList<Integer> unused = new RegularImmutableAsList<Integer>(set, new @Nullable Object[] {null, null, null}); // shouldn't throw! }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 10:16:44 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
sids[si].origin_server = null; sids[si].origin_auth = null; } } static void resolveSids0(String authorityServerName, NtlmPasswordAuthentication auth, SID[] sids) throws IOException { DcerpcHandle handle = null; LsaPolicyHandle policyHandle = null; synchronized (sid_cache) { try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL)); return null; }).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL)); return null; }); kuromojiService.store(body.dictId, entity); return asJson(
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2ExchangeCodec.kt
request: Request, contentLength: Long, ): Sink { return stream!!.getSink() } override fun writeRequestHeaders(request: Request) { if (stream != null) return val hasRequestBody = request.body != null val requestHeaders = http2HeadersList(request) stream = http2Connection.newStream(requestHeaders, hasRequestBody)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractMultimap.java
Collection<V> collection = asMap().get(key); return collection != null && collection.contains(value); } @CanIgnoreReturnValue @Override public boolean remove(@CheckForNull Object key, @CheckForNull Object value) { Collection<V> collection = asMap().get(key); return collection != null && collection.remove(value); } @CanIgnoreReturnValue @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java
if (extractorFactory == null) { throw new FessSystemException("Could not find extractorFactory."); } Extractor extractor = extractorFactory.getExtractor(responseData.getMimeType()); if (extractor == null) { extractor = ComponentUtil.getComponent("tikaExtractor"); if (extractor == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/NumberConverter.java
if (StringUtil.isEmpty(value)) { return null; } try { return new DecimalFormat(pattern).parse(value); } catch (final ParseException e) { throw new ParseRuntimeException(e); } } @Override public String getAsString(final Object value) { if (value == null) { return null; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/TimestampConverter.java
@Override public Object getAsObject(final String value) { if (isEmpty(value)) { return null; } return TimestampConversionUtil.toSqlTimestamp(value, pattern); } @Override public String getAsString(final Object value) { if (value == null) { return null; } return StringConversionUtil.toString((Date) value, pattern); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java
* {@link Boolean}に変換します。 * * @param o * 変換元のオブジェクト * @return 変換された{@link Boolean} */ public static Boolean toBoolean(final Object o) { if (o == null) { return null; } else if (o instanceof Boolean) { return (Boolean) o; } else if (o instanceof Number) { final int num = ((Number) o).intValue(); return num != 0;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/BasedirBeanConfigurationPathTranslator.java
* translation. */ public BasedirBeanConfigurationPathTranslator(File basedir) { this.basedir = basedir; } public File translatePath(File path) { File result = path; if (path != null && basedir != null) { if (path.isAbsolute()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0)