Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for subgraph (0.03 sec)

  1. docs/zh-hant/docs/virtual-environments.md

    這樣,每個專案都會有自己的虛擬環境(`.venv` 目錄),其中包含自己的套件。
    
    ```mermaid
    flowchart TB
        subgraph stone-project[專案 philosophers-stone]
            stone(philosophers-stone) --->|需要| harry-1
            subgraph venv1[.venv]
                harry-1[harry v1]
            end
        end
        subgraph azkaban-project[專案 prisoner-of-azkaban]
            azkaban(prisoner-of-azkaban) --->|需要| harry-3
            subgraph venv2[.venv]
                harry-3[harry v3]
            end
        end
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 09 22:39:33 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. docs/zh/docs/virtual-environments.md

    这样,每个工程都会有自己的虚拟环境(`.venv` 目录),其中包含自己的软件包。
    
    ```mermaid
    flowchart TB
        subgraph stone-project[工程 philosophers-stone]
            stone(philosophers-stone) --->|需要| harry-1
            subgraph venv1[.venv]
                harry-1[harry v1]
            end
        end
        subgraph azkaban-project[工程 prisoner-of-azkaban]
            azkaban(prisoner-of-azkaban) --->|需要| harry-3
            subgraph venv2[.venv]
                harry-3[harry v3]
            end
        end
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 08 19:23:26 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. scripts/translate.py

    Example:
    
        Source (English):
    
            «««
            ```mermaid
            flowchart LR
                subgraph global[global env]
                    harry-1[harry v1]
                end
                subgraph stone-project[philosophers-stone project]
                    stone(philosophers-stone) -->|requires| harry-1
                end
            ```
            »»»
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  4. docs/ko/docs/virtual-environments.md

    
    ```mermaid
    flowchart TB
        subgraph stone-project[philosophers-stone project]
            stone(philosophers-stone) --->|requires| harry-1
            subgraph venv1[.venv]
                harry-1[harry v1]
            end
        end
        subgraph azkaban-project[prisoner-of-azkaban project]
            azkaban(prisoner-of-azkaban) --->|requires| harry-3
            subgraph venv2[.venv]
                harry-3[harry v3]
            end
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java

         *
         * @param dirtyGraph - dependency graph
         * @param scope - which classpath to extract
         * @param resolve - whether to resolve artifacts.
         * @return Collection of metadata objects in the linked subgraph of the graph which
         *             contains the graph.getEntry() vertice
         */
        ClasspathContainer transform(MetadataGraph dirtyGraph, ArtifactScopeEnum scope, boolean resolve)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. docs/ja/docs/virtual-environments.md

    ```mermaid
    flowchart TB
        subgraph stone-project[philosophers-stone project]
            stone(philosophers-stone) --->|requires| harry-1
            subgraph venv1[.venv]
                harry-1[harry v1]
            end
        end
        subgraph azkaban-project[prisoner-of-azkaban project]
            azkaban(prisoner-of-azkaban) --->|requires| harry-3
            subgraph venv2[.venv]
                harry-3[harry v3]
            end
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Mar 19 12:22:33 UTC 2025
    - 27.8K bytes
    - Viewed (0)
Back to top