Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,355 for ioperation (0.24 sec)

  1. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

                id1 = operation.id
                assert operation.id != null
                assert operation.parentId == null
                assert operation.toString() == "<thread-1>"
            }
            1 * listener.start(_, _) >> { BuildOperationDescriptor descriptor, BuildOperationState operation ->
                id2 = operation.id
                assert operation.id != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/first-steps.md

    Voici notre "**fonction de chemin**" (ou fonction d'opération de chemin) :
    
    * **chemin** : `/`.
    * **opération** : `get`.
    * **fonction** : la fonction sous le "décorateur" (sous `@app.get("/")`).
    
    ```Python hl_lines="7"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    C'est une fonction Python.
    
    Elle sera appelée par **FastAPI** quand une requête sur l'URL `/` sera reçue via une opération `GET`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            dirty = false
        }
    
        protected Operation newOperation(StartEvent startEvent, Operation parent, OperationDescriptor descriptor) {
            new Operation(startEvent, parent, descriptor)
        }
    
        protected void otherEvent(ProgressEvent event, Operation operation) {
            throw new AssertionError("Unexpected type of progress event received: ${event.getClass()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        }
    
      // Sort matched operations by their position in the block.
      llvm::sort(cluster.operations, [](Operation *a, Operation *b) -> bool {
        return a->isBeforeInBlock(b);
      });
    
      // Create tf_device::ClusterOp before the last operation in the block that
      // is a part of a match set.
      auto back = cluster.operations.back();
      auto loc = back->getLoc();
      OpBuilder builder(back);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            }
    
            then:
            events.operations.size() == 3
            events.trees == events.operations
            events.operations.every { it.successful }
            events.operation("Download ${projectFModuleMissing.pom.uri}").assertIsDownload(projectFModuleMissing.pom)
            events.operation("Download ${projectF2.pom.uri}").assertIsDownload(projectF2.pom)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                assert it.parentId == treeOperations.first().id
            }
            return buildOperations
        }
    
        private BuildOperationRecord operation() {
            def operations = operations()
            assert operations.size() == 1
            return operations[0]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // identity ops, chain_src and chain_sink, per resource equivalence class.
    // Using the resource to operations map, it adds (1) a control dependency
    // from chain_src to all the operations that read/write to a resource of the
    // equivalence class, and (2) a control dependency from all the operations that
    // read/write to a resource of the class to the chain_sink operation.
    void ChainResourceOps(
        func::FuncOp func, ResourceToOpsMapTy& chain_resource_to_ops_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

        }
      });
    }
    
    // Move Transpose operations that permute `op` results before the `op`.
    void MoveTransposeBefore(Operation* op, SmallVector<Operation*, 8>* work_list) {
      // TODO(ezhulenev): Move transpose across layout sensitive operations.
      if (!op->hasTrait<OpTrait::TF::LayoutAgnostic>()) return;
    
      // Transpose operations that use operation results.
      SmallVector<TransposeOp, 2> transpose_ops;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        // Clones the tf_device.remote_run operation to replace its callee args with
        // the results of the other tf_device.remote_run operations using the
        // `mapping` as appropriate.
        Operation *cloned_remote_run_op =
            builder.clone(*remote_run_op.getOperation(), mapping);
        remote_run_op.erase();
    
        // Replaces usages of the results of the original operations with the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

     * Offers ways to communicate both ways with a Gradle operation, be it building a model or running tasks.
     * <p>
     * Enables tracking progress via listeners that will receive events from the Gradle operation.
     * <p>
     * Allows providing standard output streams that will receive output if the Gradle operation writes to standard streams.
     * <p>
     * Allows providing standard input that can be consumed by the gradle operation (useful for interactive builds).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top