Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for subgraph (0.22 sec)

  1. architecture/networking/pilot.md

    ```mermaid
    graph TD
        subgraph Config Flow
            cu(Config Update)
            db(Debounce)
            pc(Recompute Push Context)
            pq(Push Queue)
            cu-->db
            db--Trigger Once Steady-->pc
            pc--Enqueue All Clients-->pq
        end
        subgraph Proxy
            c(Client)
        end
        subgraph Pusher
            pj(Push Job)
            pj--read-->pq
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. docs/en/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 Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 03:16:23 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. docs/pt/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 Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:37:13 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. architecture/ambient/ztunnel.md

    Below shows an example outbound request. The "target" path is what the client sends, while the "actual" path is the real network flow after redirection.
    
    ```mermaid
    graph LR
        subgraph Client Node
            Client
            CZ["Ztunnel"]
        end
        subgraph Server Node
            Server
            SZ["Ztunnel"]
        end
        Client--Plain-->CZ
        CZ-."HBONE (target)".->Server
        CZ--"HBONE (actual)"-->SZ
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_distributed_test.cc

        // During execution:
        //   * task:0 processes main function `VariableAddFunctionWithGraphError`
        //     and places the 'read0_maybe_with_graph_error' op on task:2
        //   * task:0 partitions the main function with a subgraph containing
        //     'read0_maybe_with_graph_error' sent to task:2
        //   * task:2 graph pass reports an error when it sees
        //     'read0_maybe_with_graph_error' with dev2_name
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top