- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 1,989 for nullif (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLinkConverter.java
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java
* * @param activeProfileIds The identifiers of those profiles to activate, may be {@code null}. * @return This context, never {@code null}. */ public DefaultProfileActivationContext setActiveProfileIds(List<String> activeProfileIds) { if (activeProfileIds != null) { this.activeProfileIds = Collections.unmodifiableList(activeProfileIds); } else {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 7.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java
if (cacheRecord != null && cacheRecord.getException() != null) { throw cacheRecord.getException(); } return cacheRecord; } @Override public CacheRecord put(Key key, List<Artifact> pluginArtifacts) { Objects.requireNonNull(pluginArtifacts, "pluginArtifacts cannot be null"); assertUniqueKey(key);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.9K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/validation/DefaultSettingsValidator.java
if (settings.isUsePluginRegistry()) { addViolation(problems, Severity.WARNING, "usePluginRegistry", null, "is deprecated and has no effect."); } List<String> pluginGroups = settings.getPluginGroups(); if (pluginGroups != null) { for (int i = 0; i < pluginGroups.size(); i++) { String pluginGroup = pluginGroups.get(i).trim();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 10.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
Prerequisites prerequisites = mavenProject.getModel().getDelegate().getPrerequisites(); if (prerequisites != null && prerequisites.getMaven() != null) { logger.warn( "The project {} uses prerequisites" + " which is only intended for maven-plugin projects "Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon May 05 16:58:52 GMT 2025 - 28.7K bytes - Click Count (1)