Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 443 for parent_ (0.06 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelWriter.java

     */
    @Deprecated(since = "4.0.0")
    public interface ModelWriter {
    
        /**
         * Writes the supplied model to the specified file. Any non-existing parent directories of the output file will be
         * created automatically.
         *
         * @param output The file to serialize the model to, must not be {@code null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. compat/maven-model/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-beta-6-SNAPSHOT</version>
    
        <relativePath>../../</relativePath>
      </parent>
    
      <artifactId>maven-model</artifactId>
    
      <name>Maven Model</name>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java

         * @return <code>true</code> to visit the specified dependency node's next sibling, <code>false</code> to skip the
         *         specified dependency node's next siblings and proceed to its parent
         */
        boolean leave(@Nonnull Node node);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/server-workers.md

    <font color="#4E9A06">INFO</font>:     Uvicorn running on <b>http://0.0.0.0:8000</b> (Press CTRL+C to quit)
    <font color="#4E9A06">INFO</font>:     Started parent process [<font color="#34E2E2"><b>27365</b></font>]
    <font color="#4E9A06">INFO</font>:     Started server process [<font color="#06989A">27368</font>]
    <font color="#4E9A06">INFO</font>:     Waiting for application startup.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Sep 18 16:09:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. api/maven-api-meta/src/site/site.xml

          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
          <!--item name="FAQ" href="faq.html"/-->
        </menu>
    
        <menu ref="parent"/>
        <menu ref="reports"/>
      </body>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. api/maven-api-plugin/src/site/site.xml

          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
          <!--item name="FAQ" href="faq.html"/-->
        </menu>
    
        <menu ref="parent"/>
        <menu ref="reports"/>
      </body>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. api/maven-api-toolchain/src/site/site.xml

          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
          <!--item name="FAQ" href="faq.html"/-->
        </menu>
    
        <menu ref="parent"/>
        <menu ref="reports"/>
      </body>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. api/src/site/site.xml

          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
          <!--item name="FAQ" href="faq.html"/-->
        </menu>
    
        <menu ref="parent"/>
        <menu ref="reports"/>
      </body>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. apache-maven/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-beta-6-SNAPSHOT</version>
      </parent>
    
      <artifactId>apache-maven</artifactId>
      <packaging>pom</packaging>
    
      <name>Apache Maven Distribution</name>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 13:41:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

    ```
    
    that would mean:
    
    * Starting in the same package that this module (the file `app/routers/items.py`) lives in (the directory `app/routers/`)...
    * go to the parent package (the directory `app/`)...
    * then go to the parent of that package (there's no parent package, `app` is the top level 😱)...
    * and in there, find the module `dependencies` (the file at `app/dependencies.py`)...
    * and from it, import the function `get_token_header`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top