Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,633 for ioperation (0.25 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    ### `tf_executor.graph` Operation
    
    The `tf_executor.graph` operation contains a region with a single block that
    lists the operations in a TensorFlow graph. The operations are topologically
    sorted in-order (no cycles are allowed in the SSA values). The execution model
    for operations in this block follows the TensorFlow executor semantics:
    
    1.  Operations that don’t have any transitive dependencies through the SSA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K 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. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationExecutorParallelExecutionTest.groovy

            operations * operation.run(_)
    
            where:
            // Where operations < maxThreads
            // operations = maxThreads
            // operations >> maxThreads
            operations | maxThreads
            0          | 1
            1          | 1
            20         | 1
            1          | 4
            4          | 4
            20         | 4
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/EvaluateSettingsBuildOperationIntegrationTest.groovy

        }
    
        private List<BuildOperationRecord> operations() {
            buildOperations.all(EvaluateSettingsBuildOperationType)
        }
    
        private BuildOperationRecord operation() {
            assert operations().size() == 1
            operations()[0]
        }
    
        private void verifySettings(BuildOperationRecord operation, File settingsFile) {
            assert operation.details.settingsDir == settingsFile.parentFile.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    	//   - the same volumeName but empty nodeName
    
    	// If there is no operation with a matching key, the operation is allowed to
    	// proceed.
    	// If an operation with a matching key exists and the previous operation is
    	// running, an AlreadyExists error is returned.
    	// If an operation with a matching key exists and the previous operation
    	// failed:
    	// - If the previous operation has the same
    	//   generatedOperations.operationName:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. pkg/util/goroutinemap/goroutinemap.go

    type GoRoutineMap interface {
    	// Run adds operation name to the list of running operations and spawns a
    	// new go routine to execute the operation.
    	// If an operation with the same operation name already exists, an
    	// AlreadyExists or ExponentialBackoff error is returned.
    	// Once the operation is complete, the go routine is terminated and the
    	// operation name is removed from the list of executing operations allowing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationQueue.java

     *
     * @param <T> type of build operations to hold
     */
    public interface BuildOperationQueue<T extends BuildOperation> {
    
        /**
         * Adds an operation to be executed, potentially executing it instantly.
         *
         * @param operation operation to execute
         */
        void add(T operation);
    
        /**
         * Cancels all queued operations in this queue.  Any operations that have started will be allowed to complete.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ProgressLogEventGenerator.java

            for (Operation operation : operations.values()) {
                operation.completeHeader();
            }
            listener.onOutput(event);
        }
    
        private void onComplete(ProgressCompleteEvent progressCompleteEvent) {
            if (operations.isEmpty()) {
                return;
            }
            Operation operation = operations.remove(progressCompleteEvent.getProgressOperationId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. 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)
Back to top