- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 311 for locate (0.04 sec)
-
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java
*/ String STRICT = "strict"; /** * Locates the pom in the given directory. * * @param dir the directory to locate the pom for, never {@code null} * @return a {@code Source} pointing to the located pom or an empty {@code Optional} if none was found by this parser */ @Nonnull Optional<Source> locate(@Nonnull Path dir); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Sep 10 17:18:47 UTC 2024 - 3.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/di/DiTest.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Feb 10 23:18:32 UTC 2025 - 12.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java
} }); } static class BridgeInjectorImpl extends InjectorImpl { final Provider<BeanLocator> locator; final Binder binder; BridgeInjectorImpl(Provider<BeanLocator> locator, Binder binder) { this.locator = locator; this.binder = binder; } @Override protected <U> Injector bind(Key<U> key, Binding<U> binding) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 16:01:38 UTC 2025 - 11.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java
* @return the path to the located POM file, or null if no POM can be found * @throws NullPointerException if project is null */ @Nullable Path locateExistingPom(@Nonnull Path project); } /** * Resolves a relative path to another POM file using the provided model locator. * This method is specifically used to locate POM files for subprojects or relatedRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 4.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java
* under the License. */ package org.apache.maven.model.locator; import java.io.File; /** * Locates a POM file within a project base directory. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelLocator { /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecyclePhaseNotFoundException.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.lifecycle; /** * Signals a failure to locate the lifecycle for some phase. * */ public class LifecyclePhaseNotFoundException extends Exception { private final String lifecyclePhase; /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleNotFoundException.java
package org.apache.maven.lifecycle; /** * Signals a failure to locate a lifecycle. * */ public class LifecycleNotFoundException extends Exception { private final String lifecycleId; /** * Creates a new exception to indicate that the specified lifecycle is unknown. * * @param lifecycleId The identifier of the lifecycle that could not be located, may be {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java
import java.nio.file.Path; import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.annotations.Nullable; /** * Interface used to locate the root directory for a given project. * * The root locator is usually looked up from the plexus container. * One notable exception is the computation of the early {@code session.rootDirectory}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** * LDAP filter for finding user accounts. * Defines the search filter used to locate user accounts in LDAP. */ @Size(max = 1000) public String ldapAccountFilter; /** * LDAP filter for finding groups. * Defines the search filter used to locate groups in LDAP. */ @Size(max = 1000) public String ldapGroupFilter; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/rtinfo/internal/DefaultRuntimeInformation.java
try (InputStream is = DefaultRuntimeInformation.class.getResourceAsStream("/" + resource)) { if (is != null) { props.load(is); } else { logger.warn("Could not locate " + resource + " on classpath, Maven runtime information not available"); } } catch (IOException e) { String msg = "Could not parse " + resource + ", Maven runtime information not available";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0)