Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,041 for ioperation (0.35 sec)

  1. 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)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientBuildEventGenerator.java

                Operation operation = mapper.accept(buildOperation);
                if (operation != null) {
                    Operation previous = running.put(buildOperation.getId(), operation);
                    if (previous != null) {
                        throw new IllegalStateException("Operation " + buildOperation.getId() + " already started.");
                    }
                    operation.generateStartEvent(buildOperation, startEvent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      const Block::iterator end = ops.end();
    
      // An operation is ready to be scheduled if all its operands are ready. An
      // operand is ready if:
      const auto is_ready = [&](Value value, Operation *top) {
        Operation *parent = value.getDefiningOp();
        // - it is a block argument,
        if (parent == nullptr) return true;
        Operation *ancestor = block->findAncestorOpInBlock(*parent);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

            def runTasks = events.operation("Run tasks")
            runTasks.descriptor.name == "Run tasks"
            runTasks.descriptor.parent == runTasksParent.descriptor
    
            events.operations[0] == runBuild
    
            events.operations.every { it.successful }
            events.operations.every { it.buildOperation }
        }
    
        def "receive build progress events for failed operations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

          res.push_back(op.getValue());
        }
        return res;
      }
    
      // Gets a pointer to the operation to be folded.
      Operation* Op() { return operation_; }
    
     private:
      explicit FoldAdaptor(Operation* operation) : operation_(operation) {}
      Operation* const operation_;
    };
    
    // APSInt provides operators which APInt does not, so allow for converting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/dependencies/global-dependencies.md

        ```
    
    And all the ideas in the section about [adding `dependencies` to the *path operation decorators*](dependencies-in-path-operation-decorators.md){.internal-link target=_blank} still apply, but in this case, to all of the *path operations* in the app.
    
    ## Dependencies for groups of *path operations*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/EventFiringTaskExecuterTest.groovy

            0 * taskExecutionListener._
            0 * taskListener._
    
            and:
            buildOperationRunner.operations[0].name == ":a"
            buildOperationRunner.operations[0].displayName == "Task :a"
            buildOperationRunner.operations[0].progressDisplayName == ":a"
            buildOperationRunner.operations[0].metadata == BuildOperationCategory.TASK
        }
    
        def "does not run task action when beforeExecute event fails"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildOperationStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.CallableBuildOperation;
    
    import java.util.function.Function;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringRemoteBuildCacheServiceHandle.java

    import org.gradle.caching.internal.controller.operations.LoadOperationDetails;
    import org.gradle.caching.internal.controller.operations.LoadOperationHitResult;
    import org.gradle.caching.internal.controller.operations.LoadOperationMissResult;
    import org.gradle.caching.internal.controller.operations.StoreOperationDetails;
    import org.gradle.caching.internal.controller.operations.StoreOperationResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

                default:
                    throw new AssertionError();
            }
        }
    
        /*
         * This operation is only used here temporarily. Should be replaced with a more stable operation in the long term.
         */
        public interface Operation extends BuildOperationType<Operation.Details, Operation.Result> {
            interface Details {
                Class<?> getWorkType();
                UnitOfWork.Identity getIdentity();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top