Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,633 for ioperation (0.27 sec)

  1. docs/en/docs/how-to/general.md

    To add tags to your *path operations*, and group them in the docs UI, read the docs for [Tutorial - Path Operation Configurations - Tags](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank}.
    
    ## Documentation Summary and Description - OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

     * Offers ways to communicate both ways with a Gradle operation, be it building a model or running tasks.
     * <p>
     * Enables tracking progress via listeners that will receive events from the Gradle operation.
     * <p>
     * Allows providing standard output streams that will receive output if the Gradle operation writes to standard streams.
     * <p>
     * Allows providing standard input that can be consumed by the gradle operation (useful for interactive builds).
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationFinishedNotification.java

         * A structured object providing details about the operation that was performed.
         */
        Object getNotificationOperationDetails();
    
        /**
         * A structured object representing the outcome of the operation.
         * Null if the operation failed, or if no result details are produced for the type of operation.
         */
        Object getNotificationOperationResult();
    
        /**
         * The operation failure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    // BlockArg or as a result of an Operation.
    llvm::SmallVector<Value> AccumulateOperandsDefinedAbove(
        const llvm::SetVector<Operation*>& partition_ops);
    
    // Similar to `AccumulateOperandsDefinedAbove()`, computes the Value(s) that are
    // defined within a Subgraph and referenced in a descendant Operation. These
    // Values(s) are to be returned by the new raised function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/operationexecutor/operation_executor.go

    // prevents more than one operation from being triggered on the same socket path.
    //
    // These operations should be idempotent (for example, RegisterPlugin should
    // still succeed if the plugin is already registered, etc.). However,
    // they depend on the plugin handlers (for each plugin type) to implement this
    // behavior.
    //
    // Once an operation completes successfully, the actualStateOfWorld is updated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

    }
    
    bool HasDataDependencyWithUnscheduledOp(
        Operation& op, Block* block, SmallPtrSet<Operation*, 16>& unscheduled_ops) {
      WalkResult ready_to_schedule = op.walk([&](Operation* nested_op) {
        for (Value operand : nested_op->getOperands()) {
          Operation* defining_op = operand.getDefiningOp();
          if (!defining_op) continue;
          Operation* producer_in_block = block->findAncestorOpInBlock(*defining_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

            return new IdentityContext(context, identityInputProperties, identityInputFileProperties, identity);
        }
    
        public interface Operation extends BuildOperationType<Operation.Details, Operation.Result> {
            interface Details {
                Class<?> getWorkType();
            }
    
            interface Result {
                Identity getIdentity();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/progress/DefaultProgressLoggerFactory.java

    import org.gradle.internal.operations.BuildOperationCategory;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationIdFactory;
    import org.gradle.internal.operations.BuildOperationMetadata;
    import org.gradle.internal.operations.BuildOperationRef;
    import org.gradle.internal.operations.CurrentBuildOperationRef;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top