Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,683 for ioperation (0.2 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/CompilationTrace.kt

        val file = File(projectRoot, "operation-trace-log.txt")
        action(CompileTrace(file.readLines()))
    }
    
    
    internal
    class CompileTrace(private val operations: List<String>) {
    
        fun assertScriptCompile(stage: CachedScript.CompilationStage) {
            val description = operationDescription(stage)
            require(operations.any { it.contains(description) }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/RecordingObjectOutputStream.kt

        private
        val operations = mutableListOf<suspend WriteContext.() -> Unit>()
    
        suspend fun WriteContext.playback() {
            withBeanTrace(beanType) {
                operations.forEach { operation ->
                    operation()
                }
            }
        }
    
        private
        fun record(operation: suspend WriteContext.() -> Unit) {
            operations.add(operation)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationQueueTest.groovy

            operations.each { operation ->
                operationQueue.add(operation)
            }
            def failureCount = operations.findAll({ it instanceof Failure }).size()
    
            when:
            operationQueue.waitForCompletion()
    
            then:
            // assumes we don't fail early
            MultipleBuildOperationFailures e = thrown()
            e.getCauses().every({ it instanceof GradleException })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/DefaultCollectionCallbackActionDecorator.java

    import org.gradle.internal.code.UserCodeApplicationContext;
    import org.gradle.internal.code.UserCodeApplicationId;
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.RunnableBuildOperation;
    
    import javax.annotation.Nullable;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

                buildCacheKey,
                originExecutionTime
            );
        }
    
        /*
         * 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 {
                Details INSTANCE = new Details() {
                };
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerRetryTest.groovy

            given:
            iteration++
    
            when:
            logToFakeDaemonLog('java.net.SocketException: Socket operation on nonsocket: no further information')
            throwWhen(new IOException("Could not dispatch a message to the daemon.", new IOException("An existing connection was forcibly closed by the remote host")), iteration == 1)
    
            then:
            def ioe = thrown(IOException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

    // Coefficient-wise binary operation with implicit broadcasting support, for
    // example tf.Sub operation.
    template <typename ConcreteType>
    class CwiseBinary : public TraitBase<ConcreteType, CwiseBinary> {};
    
    // Coefficient-wise unary operation, for example tf.Sqrt operation.
    template <typename ConcreteType>
    class CwiseUnary : public TraitBase<ConcreteType, CwiseUnary> {};
    
    namespace detail {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

    import org.gradle.internal.logging.events.operations.LogEventBuildOperationProgressDetails
    import org.gradle.internal.logging.events.operations.ProgressStartBuildOperationProgressDetails
    import org.gradle.internal.logging.events.operations.StyledTextBuildOperationProgressDetails
    import org.gradle.internal.operations.BuildOperationDescriptor
    import org.gradle.internal.operations.BuildOperationListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

            }).wasInterrupted()) {
        fn.emitOpError("Can't have control ops in this pass.");
        signalPassFailure();
      }
    
      llvm::SmallVector<Operation *, 4> ops_with_side_effects;
    
      // We're iterating over all operations at the top block level, excluding
      // the return operation (which otherwise would be recognized as being
      // susceptible to side effects when returning a resource variable.)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      bool IsQuantized(Operation* op);
    
      // Adds all the users of index-th result of op to the work list.
      void AddUserToList(Operation* op, const int index) {
        for (Operation* user : op->getResult(index).getUsers()) {
          work_list_.push_back(user);
        }
      }
    
      // Adds the defining op of index-th operand of op to the work list.
      void AddOperandToList(Operation* op, const int index) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top