Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for subgraph (0.18 sec)

  1. android/guava/src/com/google/common/graph/Graphs.java

              // requireNonNull is safe because the endpoint pair comes from the graph.
              subgraph.putEdgeValue(
                  node,
                  successorNode,
                  requireNonNull(graph.edgeValueOrDefault(node, successorNode, null)));
            }
          }
        }
        return subgraph;
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  2. architecture/README.md

        subgraph software["software platform"]
        end
        style software fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        software --> core
    
        subgraph jvm["jvm platform"]
        end
        style jvm fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        jvm --> core
        jvm --> software
    
        subgraph extensibility["extensibility platform"]
        end
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Feb 22 01:31:52 GMT 2024
    - 2K bytes
    - Viewed (0)
  3. architecture/readme.md

    ide["ide module"]
    style ide stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px;
    
    subgraph software["software platform"]
    end
    style software fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    software --> core
    
    subgraph jvm["jvm platform"]
    end
    style jvm fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    jvm --> core
    jvm --> software
    
    subgraph extensibility["extensibility platform"]
    end
    Plain Text
    - Registered: Wed Feb 21 11:36:11 GMT 2024
    - Last Modified: Wed Feb 14 20:23:24 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. architecture/security/docs/overview.dot

    digraph { envoy -> sds [dir=both, label="SDS"] envoy -> xdsproxy [dir=both, label="ADS"] sds -> ca [label="CSR"] xdsproxy -> discovery [dir=both,label="ADS"] envoy [shape=hexagon, color=purple] subgraph cluster_istioagent { label = "Istio Agent" color="orange" sds xdsproxy } subgraph cluster_istiod { label = "Istiod" color="lightblue" ca discovery } }...
    MS Word
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Aug 25 00:43:58 GMT 2023
    - 460 bytes
    - Viewed (0)
  5. architecture/security/docs/ca.dot

    -> ca [label="Send CSR gRPC Request"] subgraph cluster_istioagent { label = "Istio Agent" color="orange" sds SecretManager -> caClient [label="Sign CSR"] caClient -> grpc grpc -> TokenProvider [dir=none,label="Fetch JWT",color=purple] grpc -> cfiles [dir=none,label="Fetch Cert",color=purple] sds -> SecretManager [label="Generate certificate"] SecretManager -> cfiles [label="Write certs to file"] cfiles [label="Certificate Files"] grpc [shape=diamond] } subgraph cluster_istiod { label = "Istiod" color="lightblue"...
    MS Word
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Aug 25 00:43:58 GMT 2023
    - 674 bytes
    - Viewed (0)
  6. 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
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  7. 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)
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  8. .idea/dictionaries/Nikolay_Krasko.xml

          <w>preloader</w>
          <w>preloading</w>
          <w>preprocess</w>
          <w>proximities</w>
          <w>redeclarations</w>
          <w>reparsed</w>
          <w>smap</w>
          <w>subclassed</w>
          <w>subgraph</w>
          <w>substep</w>
          <w>tailrec</w>
          <w>typealias</w>
        </words>
      </dictionary>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue May 23 16:52:40 GMT 2023
    - 756 bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                // System.err.println("Cleaned("+requestedScope+") graph("+res.getVertices().size()+"):\n"+res.toString());
                // System.err.println("Linked("+requestedScope+")
                // subgraph("+linkedRes.getVertices().size()+"):\n"+linkedRes.toString());
                return findLinkedSubgraph(res);
            } catch (MetadataResolutionException e) {
                throw new GraphConflictResolutionException(e);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  10. 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
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
Back to top