Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 301 for iterations (0.42 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    // (3) For passthrough results, if result #r is the same as arg #a of the loop
    //     body, after one iteration, result #r = arg #a, so we need to also
    //     propagate arg #a to result #r. After another iteration, arg #a of the
    //     loop body will be result #a of the previous iteration. So then we need
    //     propagate from result #a to result #r. Generalizing, the resource ID
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

                collectOutputs(build)
                build.addProgressListener(events, OperationType.FILE_DOWNLOAD)
                    .run()
            }
    
            then:
            events.operations.size() == 3
            events.trees == events.operations
            events.operations.every { it.successful }
            events.operation("Download ${projectFModuleMissing.pom.uri}").assertIsDownload(projectFModuleMissing.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)
  4. pkg/kubelet/volumemanager/volume_manager.go

    	// WaitForAttachAndMount call will wait for all volumes in the specified pod
    	// to be attached and mounted. Even though cloud operations can take several
    	// minutes to complete, we set the timeout to 2 minutes because kubelet
    	// will retry in the next sync iteration. This frees the associated
    	// goroutine of the pod to process newer updates if needed (e.g., a delete
    	// request to the pod).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

    import static org.gradle.operations.execution.CachingDisabledReasonCategory.DO_NOT_CACHE_IF_SPEC_SATISFIED
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.NON_CACHEABLE_TREE_OUTPUT
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.NOT_ENABLED_FOR_TASK
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.NO_OUTPUTS_DECLARED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    //     operations on resource variables are resource reads/writes..
    //   . Replaces resource reads/writes with function inputs/outputs and
    //     eliminates the use of resource variables.
    //   . Legalizes the operations to XLA HLO operations.
    //   . Canonicalizes the XLA HLO operations.
    //
    // device_type: XLA JIT device to use for compilation such as "XLA_CPU_JIT",
    //   "XLA_GPU_JIT" or "XLA_TPU_JIT".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

    import org.gradle.internal.operations.BuildOperationType
    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.internal.operations.trace.BuildOperationRecord.Progress
    import org.gradle.test.fixtures.file.TestFile
    
    class ExecuteUserLifecycleListenerBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        @Inject
        public DefaultJdkCacheDirectory(
            GradleUserHomeDirProvider homeDirProvider,
            FileOperations operations,
            FileLockManager lockManager,
            JvmMetadataDetector detector,
            GradleUserHomeTemporaryFileProvider temporaryFileProvider
        ) {
            this.operations = operations;
            this.jdkDirectory = new File(homeDirProvider.getGradleUserHomeDirectory(), "jdks");
            this.lockManager = lockManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateStripNoinlineAttributePass();
    
    // Converts tensor list operations into operations on buffers and sizes. Needs
    // static shapes and known max element count.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTensorListOpsDecompositionPass();
    
    // Converts tensor array ops into operations on local variables, which can later
    // be removed by resource lifting. Requires known sizes and known element shapes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top