- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 3,989 for Kull (0.04 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException.java
public ArtifactMetadataRetrievalException(String message) { this(message, null, null); } /** * @param cause a cause * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)} */ @Deprecated public ArtifactMetadataRetrievalException(Throwable cause) { this(null, cause, null); } /** * @param message a message
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
* @param root the Maven Dependency, must not be {@code null} * @param scope the {link PathScope} to collect dependencies, must not be {@code null} * @return the collection result, never {@code null} * @throws DependencyResolverException if the dependency tree could not be built * @throws IllegalArgumentException if an argument is null or invalid
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
if ( this.path != null ) { _dst = _dst.deferred; _dst.enc_ndr_string(this.path); } if ( this.comment != null ) { _dst = _dst.deferred; _dst.enc_ndr_string(this.comment); } if ( this.stores != null ) { _dst = _dst.deferred;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 16.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
public void addClient(final List<String> regexList, final CrawlerClient client) { if (regexList == null || regexList.isEmpty()) { throw new CrawlerSystemException("A regular expression list is null or empty."); } if (client == null) { throw new CrawlerSystemException("CrawlerClient is null."); } for (final String regex : regexList) { if (StringUtil.isNotBlank(regex)) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 4.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
&& profile.getReporting() == null; } private static <T extends ModelBase.Builder> T prune(T builder, ModelBase model) { builder.properties(null).reporting(null); if (model.getDistributionManagement() != null && model.getDistributionManagement().getRelocation() != null) { // keep relocation only builder.distributionManagement(DistributionManagement.newBuilder()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JulLoggerAdapter.java
} @Override public void info(final String message, final Throwable t) { logger.logp(Level.INFO, sourceClass, null, message, t); } @Override public boolean isDebugEnabled() { return logger.isLoggable(Level.FINE); } @Override public void debug(final String message) { logger.logp(Level.FINE, sourceClass, null, message); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ProfileActivationFilePathInterpolator.java
} /** * Interpolates given {@code path}. * * @return absolute path or {@code null} if the input was {@code null} */ public String interpolate(String path, ProfileActivationContext context) throws InterpolationException { if (path == null) { return null; } RegexBasedInterpolator interpolator = new RegexBasedInterpolator();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java
if (accessType != null) { addFieldToSource(sourceMap, "accessType", accessType); } if (clientIp != null) { addFieldToSource(sourceMap, "clientIp", clientIp); } if (hitCount != null) { addFieldToSource(sourceMap, "hitCount", hitCount); } if (hitCountRelation != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.2K bytes - Viewed (0) -
tests/table_test.go
if !regexp.MustCompile("SELECT \\* FROM \\(SELECT .name. FROM .users. WHERE .users.\\..deleted_at. IS NULL\\) as u, \\(SELECT .name. FROM .pets. WHERE .pets.\\..deleted_at. IS NULL\\) as p WHERE .u.\\..deleted_at. IS NULL").MatchString(r.Statement.SQL.String()) { t.Errorf("Table with escape character, got %v", r.Statement.SQL.String()) }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Mar 09 09:31:28 UTC 2024 - 10.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
return; } map.put(null, unmappedValue); assertEquals(unmappedValue, map.get(null)); assertTrue(map.containsKey(null)); Entry<@Nullable K, V> entry = mapEntry(null, unmappedValue); assertTrue(entrySet.remove(entry)); assertNull(map.get(null)); assertFalse(map.containsKey(null)); } public void testEntrySetRemoveNullKeyMissing() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 43.8K bytes - Viewed (0)