Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,683 for ioperation (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

            private final long time
            private final BuildOperationRecord operation
    
            TimePoint(BuildOperationRecord operation, long time) {
                this(operation, time, false)
            }
    
            TimePoint(BuildOperationRecord operation, long time, boolean end) {
                this.operation = operation
                this.time = time
                this.end = end
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

        <T> T call(CallableBuildOperation<T> buildOperation);
    
        /**
         * Starts an operation that can be finished later.
         *
         * When a parent operation is finished any unfinished child operations will be failed.
         */
        BuildOperationContext start(BuildOperationDescriptor.Builder descriptor);
    
        /**
         * Executes the given build operation with the given worker, returns the result.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

            }
    
            buildFile << """
                import org.gradle.internal.operations.BuildOperationExecutor
                import org.gradle.internal.operations.RunnableBuildOperation
                import org.gradle.internal.operations.BuildOperationContext
                import org.gradle.internal.operations.BuildOperationDescriptor
                import java.util.concurrent.CountDownLatch
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top