- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 3,735 for Null (0.04 sec)
-
compat/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java
return Stream.of( Arguments.of(null, null, null), Arguments.of("", "", ""), Arguments.of(null, "artifactId", "1.0"), Arguments.of("", "artifactId", "1.0"), Arguments.of("groupId", null, "1.0"), Arguments.of("groupId", "", "1.0"), Arguments.of("groupId", "artifactId", null),
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
* <li>If the value is null, get the value from the context.</li> * <li>If the value is null, but the context contains the expression, don't replace the expression string * with the value, and continue to find other expressions.</li> * <li>If the value is null, get it from the model properties.</li> * </ul> */ @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
} } return null; } /** * Check if the response contains any durable handle context * @return true if durable handle context is present */ public boolean hasDurableHandleResponse() { return getDurableHandleResponse() != null || getDurableHandleV2Response() != null || getDurableHandleReconnectResponse() != null; } /** * {@inheritDoc}Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
private SmbComBlankResponse blank_resp = null; private DfsReferral dfsReferral = null; // For getDfsPath() and getServerWithDfs() /** * DFS resolver instance */ protected static Dfs dfs; NtlmPasswordAuthentication auth; // Cannot be null SmbTree tree = null; // Initially null String unc; // Initially null; set by getUncPath; never ends with '/'Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
if (methodDescs == null) { return null; } for (final MethodDesc methodDesc : methodDescs) { if (Arrays.equals(paramTypes, methodDesc.getParameterTypes())) { return methodDesc; } } return null; } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
} @Override public String getBaseVersion() { if (baseVersion == null && version != null) { setBaseVersionInternal(version); } return baseVersion; } protected String getBaseVersionInternal() { if ((baseVersion == null) && (version != null)) { setBaseVersionInternal(version); } return baseVersion; }Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
doUpdate(entity, null); } public void insertOrUpdate(User entity) { doInsertOrUpdate(entity, null, null); } public void insertOrUpdate(User entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(User entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type1MessageTest.java
int oemFlags = NtlmFlags.NTLMSSP_NEGOTIATE_OEM; // When Type1Message unicodeType1 = new Type1Message(mockContext, unicodeFlags, null, null); Type1Message oemType1 = new Type1Message(mockContext, oemFlags, null, null); // Then assertTrue((unicodeType1.getFlags() & NtlmFlags.NTLMSSP_NEGOTIATE_UNICODE) != 0); // OEM flag should not be set when default is UnicodeRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java
doUpdate(entity, null); } public void insertOrUpdate(FileAuthentication entity) { doInsertOrUpdate(entity, null, null); } public void insertOrUpdate(FileAuthentication entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java
*/ protected String getPassword(final Map<String, String> params) { final String url = params != null ? params.get(ExtractData.URL) : null; if (!passwordMap.isEmpty()) { final String resourceName = params != null ? params.get(ExtractData.RESOURCE_NAME_KEY) : null; String value = null; if (StringUtil.isNotEmpty(url)) { value = url;Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 5.1K bytes - Viewed (0)