- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 2,833 for Null (0.02 seconds)
-
guava/src/com/google/common/base/Throwables.java
* find it when available. When this is null, use the slow way. */ @J2ktIncompatible @GwtIncompatible // java.lang.reflect private static final @Nullable Method getStackTraceElementMethod = (jla == null) ? null : getGetMethod(); /** * The "getStackTraceDepth" method, only available on some JDKs so we use reflection to find it * when available. When this is null, use the slow way. */Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 20.6K bytes - Click Count (0) -
okhttp/src/jvmTest/resources/web-platform-test-toascii.json
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 5.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java
requireNonNull(event, "event cannot be null"); if (!isLocalRepositoryArtifactOrMissing(event.getSession(), event.getArtifact())) { return; } RequestTrace trace = event.getTrace(); CollectStepData collectStepTrace = null; ArtifactRequest artifactRequest = null; ArtifactDescriptorRequest artifactDescriptorRequest = null; Plugin plugin = null;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 10.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java
PluginVersionResult result = null; if (request.getPom() != null && request.getPom().getBuild() != null) { Build build = request.getPom().getBuild(); result = resolveFromProject(request, build.getPlugins()); if (result == null && build.getPluginManagement() != null) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 17.6K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ConnectionEvent.kt
@SuppressSignatureCheck sealed class ConnectionEvent { abstract val timestampNs: Long open val connection: Connection? get() = null /** Returns if the event closes this event, or null if this is no open event. */ open fun closes(event: ConnectionEvent): Boolean? = null val name: String get() = javaClass.simpleName data class ConnectStart( override val timestampNs: Long, val route: Route,Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri May 30 21:28:20 GMT 2025 - 2.6K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/TestLogHandler.kt
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 2.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java
} @Override public String getGroupId() { return groupId; } @Override public String getArtifactId() { return null; } @Override public String getBaseVersion() { return null; } public void addPluginMapping(String goalPrefix, String artifactId) { addPluginMapping(goalPrefix, artifactId, artifactId); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/LegacySupport.java
* * @param session The currently active session, may be {@code null}. */ void setSession(MavenSession session); /** * Gets the currently active session. * * @return The currently active session or {@code null} if none. */ MavenSession getSession(); /** * Gets the currently active repository session. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.1K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRuleTest.groovy
OldSuperInternal returnTypeOverridenMethod() { return null } } static class OldBase extends OldSuperInternal { void anotherPublicMethod() {} OldBase returnTypeOverridenMethod() { return null } } static class OldSub extends OldBase { OldSub returnTypeOverridenMethod() { return null } } static class NewSuperInternal {}Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 24 14:15:15 GMT 2025 - 3.2K bytes - Click Count (0) -
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; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 14.6K bytes - Click Count (0)