Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 200 for graphml (0.12 sec)

  1. docs/fr/docs/features.md

    * Le support des **WebSockets**.
    * Le support de **GraphQL**.
    * Les <abbr title="En anglais: In-process background tasks">tâches d'arrière-plan.</abbr>
    * Des évènements de démarrages et d'arrêt.
    * Un client de test basé sur `request`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/c/c_test_util.cc

    }
    
    TF_Operation* Mul(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                      TF_Status* s, const char* name) {
      TF_Operation* op;
      BinaryOpHelper("Mul", l, r, graph, s, name, &op, "", true);
      return op;
    }
    
    TF_Operation* Add(TF_Output l, TF_Output r, TF_Graph* graph, TF_Status* s,
                      const char* name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/first-steps.md

        **FastAPI** no impone ningún significado específico.
    
        La información que está presentada aquí es una guía, no un requerimiento.
    
        Por ejemplo, cuando usas GraphQL normalmente realizas todas las acciones usando únicamente operaciones `POST`.
    
    ### Paso 4: define la **función de la operación de path**
    
    Esta es nuestra  "**función de la operación de path**":
    
    * **path**: es `/`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/first-steps.md

        **FastAPI** n'impose pas de sens spécifique à chacune d'elle.
    
        Les informations qui sont présentées ici forment une directive générale, pas des obligations.
    
        Par exemple, quand l'on utilise **GraphQL**, toutes les actions sont effectuées en utilisant uniquement des opérations `POST`.
    
    ### Étape 4 : définir la **fonction de chemin**.
    
    Voici notre "**fonction de chemin**" (ou fonction d'opération de chemin) :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

        }
        tf_executor.fetch %island#0, %island#1 : tensor<*xi32>, tensor<*xi32>
      }
      func.return %graph#0, %graph#1 : tensor<*xi32>, tensor<*xi32>
    }
    
    // CHECK-LABEL: func @multiple_return
    // CHECK:   %[[GRAPH:.*]]:2 = tf_executor.graph {
    // CHECK:     %[[ADD1:.*]], %[[ADD1_control:.*]] = tf_executor.island wraps "tf.Add"(%arg0, %arg1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/edit.go

    	return true
    }
    
    // disqualify records why the dependencies of m cannot be included in the module
    // graph if reached from a part of the graph with the given pruning.
    //
    // Since the pruned graph is a subgraph of the unpruned graph, disqualifying a
    // module from a pruned part of the graph also disqualifies it in the unpruned
    // parts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    import org.gradle.internal.serialize.graph.readEnum
    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.internal.serialize.graph.readPropertyValue
    import org.gradle.internal.serialize.graph.withDebugFrame
    import org.gradle.internal.serialize.graph.withIsolate
    import org.gradle.internal.serialize.graph.withPropertyTrace
    import org.gradle.internal.serialize.graph.writeCollection
    import org.gradle.internal.serialize.graph.writeEnum
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

        /**
         *  null in dirty graph, actual
         *  scope for conflict-resolved graph
         */
        ArtifactScopeEnum scope;
    
        // ------------------------------------------------------------------------
        /**
         * init graph
         */
        public MetadataGraph(int nVertices) {
            init(nVertices, 2 * nVertices);
        }
    
        public MetadataGraph(int nVertices, int nEdges) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    	// The data structure of each (provided or inferred) type represents a graph, where
    	// each node corresponds to a type and each (directed) vertex points to a component
    	// type. The substitution process described above repeatedly replaces type parameter
    	// nodes in these graphs with the graphs of the types the type parameters stand for,
    	// which creates a new (possibly bigger) graph for each type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    Value BacktrackAnalysis::BacktrackValue(Value value) {
      while (Operation* op = value.getDefiningOp()) {
        int res_index = mlir::cast<OpResult>(value).getResultNumber();
        if (auto graph = dyn_cast<tf_executor::GraphOp>(op)) {
          value = graph.GetFetch().getOperand(res_index);
        } else if (auto island = dyn_cast<tf_executor::IslandOp>(op)) {
          // Control output is generated by the IslandOp, not the yield in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top