- Sort Score
- Num 10 results
- Language All
Results 161 - 170 of 214 for get_db (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java
for (Iterator<ProjectSegment> it = projectBuilds.iterator(); it.hasNext(); ) { ProjectSegment projectBuild = it.next(); logger.debug("Project: " + projectBuild.getProject().getId()); logger.debug("Tasks: " + projectBuild.getTaskSegment().getTasks()); logger.debug("Style: " + (projectBuild.getTaskSegment().isAggregating() ? "Aggregating" : "Regular"));Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.8K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
/** * Gets the identifier of the extension. * * @return The extension id in the form {@code <groupId>:<artifactId>:<version>}, never {@code null}. */ public String getId() { StringBuilder id = new StringBuilder(128); id.append((getGroupId() == null) ? "[unknown-group-id]" : getGroupId()); id.append(":");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 4.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
private MavenProject topLevelProject; private ProjectDependencyGraph projectDependencyGraph; private boolean parallel; /** * Plugin context keyed by project ({@link MavenProject#getId()}) and by plugin lookup key * ({@link PluginDescriptor#getPluginLookupKey()}). Plugin contexts itself are mappings of {@link String} keys to * {@link Object} values. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 16.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
accessResultData.setTransformerName(Constants.NO_TRANSFORMER); accessResult.setAccessResultData(accessResultData); } accessResultData.setId(accessResult.getId()); final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(accessResult.getSessionId()); if (arMap.containsKey(accessResult.getUrl())) {
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 6.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
public interface Artifact { /** * {@return a unique identifier for this artifact}. * The identifier is composed of groupId, artifactId, extension, classifier, and version. * * @see ArtifactCoordinates#getId() */ @Nonnull default String key() { String c = getClassifier(); return getGroupId() + ':' + getArtifactId() + ':'Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jun 26 07:56:58 GMT 2025 - 4.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java
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) -
impl/maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java
if (pluginExecutionId != null && !pluginExecutionId.isEmpty()) { for (PluginExecution execution : plugin.getExecutions()) { if (pluginExecutionId.equals(execution.getId())) { setConfiguration(execution.getConfiguration()); break; } } } else {
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) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
} return userInfoBhv.selectByPK(userCode).map(userInfo -> { final ListResultBean<FavoriteLog> list = favoriteLogBhv.selectList(cb2 -> { cb2.query().setUserInfoId_Equal(userInfo.getId()); cb2.query().setUrl_InScope(urlList); cb2.fetchFirst(fessConfig.getPageFavoriteLogMaxFetchSizeAsInteger()); }); if (!list.isEmpty()) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java
RepositoryMetadata metadata = new SnapshotArtifactRepositoryMetadata(artifact); getLogger().info("Retrieving previous build number from " + remoteRepository.getId()); repositoryMetadataManager.resolveAlways(metadata, localRepository, remoteRepository); int buildNumber = 0; Metadata repoMetadata = metadata.getMetadata(); if ((repoMetadata != null)
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java
} catch (InvalidVersionSpecificationException e) { throw new InvalidDependencyVersionException(project.getId(), d, project.getFile(), e); } if (dependencyArtifact != null) { artifacts.add(dependencyArtifact); } } return artifacts; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 6.2K bytes - Click Count (0)