Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for installDir (0.09 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/aether/MavenInstaller.java

    @Priority(100)
    final class MavenInstaller implements Installer {
    
        private final DefaultInstaller installer;
    
        private final ConsumerPomArtifactTransformer consumerPomArtifactTransformer;
    
        @Inject
        MavenInstaller(DefaultInstaller installer, ConsumerPomArtifactTransformer consumerPomArtifactTransformer) {
            this.installer = requireNonNull(installer);
            this.consumerPomArtifactTransformer = requireNonNull(consumerPomArtifactTransformer);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/artifact/installer/ArtifactInstallerTest.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.installer;
    
    import javax.inject.Inject;
    
    import java.io.File;
    
    import org.apache.maven.artifact.AbstractArtifactComponentTestCase;
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.execution.MavenSession;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/RepositorySystemSupplier.java

        }
    
        private Installer installer;
    
        public final Installer getInstaller() {
            checkClosed();
            if (installer == null) {
                installer = createInstaller();
            }
            return installer;
        }
    
        protected Installer createInstaller() {
            return new DefaultInstaller(
                    getPathProcessor(),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. docs/fr/docs/deployment/manually.md

    
    ## Installer le programme serveur
    
    Vous pouvez installer un serveur compatible ASGI avec :
    
    //// tab | Uvicorn
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. ci/official/utilities/setup.sh

        cat "$FROM_ENV"
        source "$FROM_ENV"
        rm "$FROM_ENV"
      fi
    fi
    
    # If building installer wheels, set the required environment variables that are
    # read by setup.py.
    if [[ "$TFCI_INSTALLER_WHL_ENABLE" == 1 ]]; then
      export collaborator_build=True
      # If building nightly installer wheels, set the project name to
      # nightly equivalent.
      if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Aug 07 23:01:25 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/index.md

    L'utiliser dans votre éditeur est ce qui vous montre vraiment les avantages de FastAPI, en voyant le peu de code que vous avez à écrire, toutes les vérifications de type, l'autocomplétion, etc.
    
    ---
    
    ## Installer FastAPI
    
    La première étape consiste à installer FastAPI.
    
    Pour le tutoriel, vous voudrez peut-être l'installer avec toutes les dépendances et fonctionnalités optionnelles :
    
    <div class="termy">
    
    ```console
    $ pip install fastapi[all]
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. docs/en/docs/environment-variables.md

    //// tab | Linux, macOS
    
    Let's say you install Python and it ends up in a directory `/opt/custompython/bin`.
    
    If you say yes to update the `PATH` environment variable, then the installer will add `/opt/custompython/bin` to the `PATH` environment variable.
    
    It could look like this:
    
    ```plaintext
    /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/custompython/bin
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Sep 08 20:36:53 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstallationException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.installer;
    
    /**
     */
    @Deprecated
    public class ArtifactInstallationException extends Exception {
        public ArtifactInstallationException(String message) {
            super(message);
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.installer;
    
    import java.io.File;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     */
    @Deprecated
    public interface ArtifactInstaller {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.installer;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    
    import org.apache.maven.RepositoryUtils;
    import org.apache.maven.artifact.Artifact;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top