- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for RepositorySystemSupplier (0.25 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/RepositorySystemSupplier.java
* well. Any subsequent {@code getXXX} method invocation attempt will fail with {@link IllegalStateException}. */ public class RepositorySystemSupplier implements Supplier<RepositorySystem> { private final AtomicBoolean closed = new AtomicBoolean(false); public RepositorySystemSupplier() {} private void checkClosed() { if (closed.get()) { throw new IllegalStateException("Supplier is closed");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/ProtoSession.java
@SuppressWarnings("unused") static RepositorySystemSupplier newRepositorySystemSupplier() { return new RepositorySystemSupplier(); } @Provides @SuppressWarnings("unused") static RepositorySystem newRepositorySystem(RepositorySystemSupplier repositorySystemSupplier) { return repositorySystemSupplier.getRepositorySystem(); } @Provides
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 15.4K bytes - Viewed (0)