Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,633 for ioperation (0.26 sec)

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

    import org.gradle.internal.build.event.BuildEventSubscriptions;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.OperationFinishEvent;
    import org.gradle.internal.operations.OperationIdentifier;
    import org.gradle.internal.operations.OperationProgressEvent;
    import org.gradle.internal.operations.OperationStartEvent;
    import org.gradle.tooling.internal.protocol.events.InternalOperationDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/ConditionalTemplateOperationSpec.groovy

            TemplateOperation operation1 = Mock(TemplateOperation)
            TemplateOperation operation2 = Mock(TemplateOperation)
    
            Mock(org.gradle.internal.Factory).create() >> true
            when:
            new ConditionalTemplateOperation({true} as org.gradle.internal.Factory, [operation1, operation2]).generate()
            then:
            1 * operation1.generate()
            1 * operation2.generate()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/execution/ExecuteTaskActionBuildOperationTypeIntegrationTest.groovy

        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits operation for each task action execution"() {
            when:
            buildScript """
                task t {
                    doLast {}
                    doLast {}
                }
            """
            succeeds "t"
    
            then:
            def actions = operations.all(ExecuteTaskActionBuildOperationType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 11 12:06:28 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

    // Compute the set of all values which are inputs to `ops`, but not generated
    // by an operation in `ops`, and all outputs which are used outside of `ops.
    void computeInputsOutputs(std::vector<Operation*>& ops,
                              std::vector<Value>* inputs,
                              std::vector<Value>* outputs) {
      // All operations.
      llvm::DenseSet<Operation*> all_operations;
    
      // All results of all ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationStartedNotification.java

        /**
         * A unique, opaque, value identifying this operation.
         */
        Object getNotificationOperationId();
    
        /**
         * The ID of the parent of this notification.
         *
         * Note: this is the ID of the nearest parent operation that also resulted in a notification.
         * As notifications are not sent for all operations, this may be a different value to the
         * parent operation ID.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K 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. src/internal/runtime/atomic/types_64bit.go

    package atomic
    
    // LoadAcquire is a partially unsynchronized version
    // of Load that relaxes ordering constraints. Other threads
    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    // on this thread can be observed to occur before it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint64) LoadAcquire() uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top