Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for WORKSPACE (0.05 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/JenkinsCIDetector.java

    public class JenkinsCIDetector implements CIDetector {
        public static final String NAME = "Jenkins";
    
        private static final String WORKSPACE = "WORKSPACE";
    
        @Override
        public Optional<CIInfo> detectCI() {
            String workspace = System.getenv(WORKSPACE);
            if (workspace != null && !workspace.trim().isEmpty()) {
                return Optional.of(new CIInfo() {
                    @Override
                    public String name() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. okhttp-osgi-tests/src/test/kotlin/okhttp3/osgi/OsgiTest.kt

        createWorkspace().use { workspace ->
          createBndRun(workspace).use { bndRun ->
            bndRun.resolve(
              false,
              false,
            )
          }
        }
      }
    
      private fun createWorkspace(): Workspace {
        val bndDir = workspaceDir / "cnf"
        val repoDir = bndDir / "repo"
        fileSystem.createDirectories(repoDir)
        return Workspace(workspaceDir.toFile(), bndDir.name)
          .apply {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

                            && Objects.equals(this.version, that.version)
                            && Objects.equals(this.localRepo, that.localRepo)
                            && Objects.equals(this.workspace, that.workspace)
                            && RepositoryUtils.repositoriesEquals(this.repositories, that.repositories);
                } else {
                    return false;
                }
            }
    
            @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

                            && Objects.equals(version, that.version)
                            && Objects.equals(dependencyArtifacts, that.dependencyArtifacts)
                            && Objects.equals(workspace, that.workspace)
                            && Objects.equals(localRepo, that.localRepo)
                            && RepositoryUtils.repositoriesEquals(repositories, that.repositories)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/WorkspaceRepository.java

     */
    public interface WorkspaceRepository extends Repository {
    
        /**
         * {@return the type of the repository, i.e. "workspace"}
         */
        @Nonnull
        @Override
        default String getType() {
            return "workspace";
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java

                    return true;
                }
    
                if (o instanceof CacheKey that) {
                    return CacheUtils.pluginEquals(plugin, that.plugin)
                            && Objects.equals(workspace, that.workspace)
                            && Objects.equals(localRepo, that.localRepo)
                            && RepositoryUtils.repositoriesEquals(repositories, that.repositories)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/resolver/RepositorySystemSessionFactory.java

         * should be set up as very last thing before using resolver session, that is built by invoking
         * {@link SessionBuilder#build()} method.
         *
         * @param request The maven execution request, must not be {@code null}.
         * @return The session builder "ready to use" without workspace readers.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

                if (o instanceof CacheKey that) {
                    return parentRealm == that.parentRealm
                            && CacheUtils.pluginEquals(plugin, that.plugin)
                            && Objects.equals(workspace, that.workspace)
                            && Objects.equals(localRepo, that.localRepo)
                            && RepositoryUtils.repositoriesEquals(this.repositories, that.repositories)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java

    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    public class CIDetectorHelperTest {
        private static final Set<String> ALL =
                Set.of("CIRCLECI", "CI", "WORKSPACE", "GITHUB_ACTIONS", "TEAMCITY_VERSION", "TRAVIS");
    
        @Test
        void none() throws Exception {
            assertEquals("NONE;", runner(Map.of()));
        }
    
        @Test
        void generic() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  10. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

    import org.apache.maven.repository.Proxy;
    
    /**
     * Abstraction of an artifact repository. Artifact repositories can be remote, local, or even build reactor or
     * IDE workspace.
     *
     * @deprecated Avoid use of this type, if you need access to local repository use repository system classes instead.
     */
    @Deprecated
    public interface ArtifactRepository {
        String pathOf(Artifact artifact);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 4.3K bytes
    - Viewed (1)
Back to top