Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for absoluta (0.1 sec)

  1. docs/pt/docs/tutorial/bigger-applications.md

    ```
    
    /// info | "Informação"
    
    A primeira versão é uma "importação relativa":
    
    ```Python
    from .routers import items, users
    ```
    
    A segunda versão é uma "importação absoluta":
    
    ```Python
    from app.routers import items, users
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

         * the project directory will not be considered when locating the POM file. The return value will be an absolute
         * path if the project directory is given as an absolute path.
         *
         * @param projectDirectory The (possibly non-existent) base directory to locate the POM file in, must not be {@code
         *            null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/PathTranslator.java

     */
    @Deprecated(since = "4.0.0")
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
         * platform-specific file separator if a base directory is given. Otherwise, the input path will be returned
         * unaltered.
         *
         * @param path The path to resolve, may be {@code null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

            this.passphrase = passphrase;
        }
    
        /**
         * Get the absolute path to the private key file.
         *
         * @return absolute path to private key
         */
        public String getPrivateKey() {
            return privateKey;
        }
    
        /**
         * Set the absolute path to private key file.
         *
         * @param privateKey path to private key in local file system
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ProfileActivationFilePathInterpolator.java

    import org.codehaus.plexus.interpolation.InterpolationException;
    import org.codehaus.plexus.interpolation.MapBasedValueSource;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    
    /**
     * Finds an absolute path for {@link ActivationFile#getExists()} or {@link ActivationFile#getMissing()}
     *
     * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead
     */
    @Named
    @Singleton
    @Deprecated
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/project/InvalidProjectModelException.java

        public InvalidProjectModelException(String projectId, String message, File pomLocation) {
            super(projectId, message, pomLocation);
        }
    
        /**
         * @param projectId
         * @param pomLocation      absolute path of the pom file
         * @param message
         * @param validationResult
         * @deprecated use {@link File} constructor for pomLocation
         */
        @Deprecated
        public InvalidProjectModelException(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    .daterangepicker {
      position: absolute;
      color: inherit;
      background-color: #fff;
      border-radius: 4px;
      border: 1px solid #ddd;
      width: 278px;
      max-width: none;
      padding: 0;
      margin-top: 7px;
      top: 100px;
      left: 20px;
      z-index: 3001;
      display: none;
      font-family: arial;
      font-size: 15px;
      line-height: 1em;
    }
    
    .daterangepicker:before, .daterangepicker:after {
      position: absolute;
      display: inline-block;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultPathTranslator.java

                path = path.replace('\\', File.separatorChar).replace('/', File.separatorChar);
    
                File file = new File(path);
                if (file.isAbsolute()) {
                    // path was already absolute, just normalize file separator and we're done
                    result = file.getPath();
                } else if (file.getPath().startsWith(File.separator)) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/configuration/BasedirBeanConfigurationPathTranslator.java

        }
    
        public File translatePath(File path) {
            File result = path;
    
            if (path != null && basedir != null) {
                if (path.isAbsolute()) {
                    // path is already absolute, we're done
                } else if (path.getPath().startsWith(File.separator)) {
                    // drive-relative Windows path, don't align with base dir but with drive root
                    result = path.getAbsoluteFile();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        void attachArtifact(@Nonnull Project project, @Nonnull ProducedArtifact artifact, @Nonnull Path path);
    
        /**
         * Obtain an immutable list of compile source roots for the given project and scope.
         * Paths are absolute.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
         * @return the list of compile source roots
         */
        @Nonnull
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 11:52:48 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top