Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,041 for ioperation (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/TemplateOperationFactorySpec.groovy

            when:
            def operation1 = factory.newTemplateOperation()
            def operation2 = factory.newTemplateOperation()
    
            operation1.withBindings(key:"value")
            operation1.withTarget(new File("atarget"))
    
            then:
            operation1 != operation2
            operation1.bindings.size() == 4
            operation2.bindings.size() == 3
            operation2.target == null
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            events.trees == events.operations
            events.operation("Download ${projectFModuleMissing.pom.uri}").assertIsDownload(projectFModuleMissing.pom)
            events.operation("Download ${projectF2.pom.uri}").assertIsDownload(projectF2.pom)
            events.operation("Download ${projectF2.artifact.uri}").assertIsDownload(projectF2.artifact)
            events.operations.every { it.successful }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteLoadBuildOperationType.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.operations;
    
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * A load operation from a build cache.
     *
     * A load operation may HIT or MISS.
     * It may also fail.
     * Load operation results and failures are mutually exclusive.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top