Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 325 for LOCAL (0.01 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java

    /**
     * Manages the organization and access of artifacts within the local Maven repository.
     * The local repository serves as a cache for downloaded remote artifacts and storage
     * for locally installed artifacts. This manager provides services to determine the
     * appropriate paths for artifacts within the local repository structure.
     *
     * <p>The LocalRepositoryManager is responsible for:
     * <ul>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. .github/workflows/maven.yml

            run: |
              mkdir -p maven-local
              if [ "${{ runner.os }}" = "Windows" ]; then
                unzip maven-dist/apache-maven-*-bin.zip -d maven-local
                # Get the name of the extracted directory
                MAVEN_DIR=$(ls maven-local)
                # Move contents up one level
                mv "maven-local/$MAVEN_DIR"/* maven-local/
                rm -r "maven-local/$MAVEN_DIR"
              else
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Aug 25 07:07:00 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProviderTest.java

        }
    
        @Test
        public void testCreateConnection() throws Exception {
            InetSocketAddress remote = new InetSocketAddress("localhost", 445);
            InetSocketAddress local = null;
    
            RdmaConnection connection = provider.createConnection(remote, local);
            assertNotNull(connection, "Connection should not be null");
            assertEquals(remote, connection.getRemoteAddress(), "Remote address should match");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml

          Inside ~/.m2/settings.xml:
    
          <localRepository>/path/to/local/repository</localRepository>
          ]]></configuration>
          <description>The ArtifactRepository instance referencing the local artifact
            repository.</description>
          <cliOptions>
            <cliOption>
              <key>-Dmaven.repo.local=/path/to/local/repo</key>
              <value>Override the local repository location on a per-build basis.</value>
            </cliOption>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java

     * {@linkplain LocalRepository local repositories} and
     * {@linkplain RemoteRepository remote repositories}.</p>
     *
     * <h2>Repository Resolution Process</h2>
     *
     * <p>When resolving dependencies, Maven follows this order:</p><ol>
     * <li>Check Local Repository: Maven first checks if the artifact is available in the local repository.</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/LazyLogger.java

         * That may introduce an extra class for each lambda (currently a dozen).
         */
        Logger local = logger;
        if (local != null) {
          return local;
        }
        synchronized (lock) {
          local = logger;
          if (local != null) {
            return local;
          }
          return logger = Logger.getLogger(loggerName);
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbTransportPool.java

        /**
         * Get transport connection, with local binding
         *
         * @param tc
         *            context to use
         * @param address the server address
         * @param port the port number
         * @param localAddr the local address to bind to
         * @param localPort the local port to bind to
         * @param hostName the server host name
         * @param exclusive
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/rdma/RdmaMemoryRegion.java

     * permissions, and keys for local and remote access.
     */
    public abstract class RdmaMemoryRegion implements AutoCloseable {
    
        /** Memory buffer for RDMA operations */
        protected final ByteBuffer buffer;
        /** Access permissions for this memory region */
        protected final EnumSet<RdmaAccess> accessFlags;
        /** Local key for accessing this memory region */
        protected final int localKey;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java

         *
         * @param remote remote socket address
         * @param local local socket address, may be null for auto-binding
         * @return new RDMA connection instance
         * @throws IOException if connection creation fails
         */
        RdmaConnection createConnection(InetSocketAddress remote, InetSocketAddress local) throws IOException;
    
        /**
         * Connect to a remote RDMA endpoint
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 3K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/additional-responses.md

    O local correto é:
    
    * Na chave `content`, que tem como valor um outro objeto JSON (`dict`) que contém:
        * Uma chave com o media type, como por exemplo `application/json`, que contém como valor um outro objeto JSON, contendo::
            * Uma chave `schema`, que contém como valor o JSON Schema do modelo, sendo este o local correto.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top