Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 729 for iterations (0.21 sec)

  1. 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)
  2. tensorflow/compiler/jit/partially_decluster_pass.cc

    }  // namespace
    
    Status PartiallyDeclusterPass::Run(
        const GraphOptimizationPassOptions& options) {
      // NB!  In this pass we assume the only XLA-auto-clusterable operations that
      // may have side effects are resource variable operations so we don't cluster
      // those.  The pass will have to be updated if this assumption becomes
      // invalid.
    
      Graph* graph = options.graph->get();
    
      TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSource.java

    abstract public class AbstractIterationOrderRetainingElementSource<T> implements ElementSource<T> {
        // This set represents the order in which elements are inserted to the store, either actual
        // or provided.  We construct a correct iteration order from this set.
        private final List<Element<T>> inserted = new ArrayList<>();
    
        private final MutationGuard mutationGuard = new DefaultMutationGuard();
    
        private Action<T> pendingAddedAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 20:04:06 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            executed ":buildB:jar"
    
            and:
            def root = operations.root(RunBuildBuildOperationType)
    
            def buildSrcOps = operations.all(BuildBuildSrcBuildOperationType)
            buildSrcOps.size() == 1
            buildSrcOps[0].displayName == "Build buildSrc"
            buildSrcOps[0].details.buildPath == ":buildB"
    
            def loadOps = operations.all(LoadBuildBuildOperationType)
            loadOps.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    					RuleWithOperations: v1.RuleWithOperations{
    						Operations: []v1.OperationType{"*"},
    						Rule:       v1.Rule{APIGroups: []string{"extensions"}, APIVersions: []string{"v1"}, Resources: []string{"deployments"}, Scope: &allScopes},
    					},
    				}, {
    					RuleWithOperations: v1.RuleWithOperations{
    						Operations: []v1.OperationType{"*"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

     *   <li>The retrieval operations {@link #peek}, {@link #peekFirst}, {@link #peekLast}, {@link
     *       #element}, and {@link #size} are constant-time.
     *   <li>The enqueuing and dequeuing operations ({@link #offer}, {@link #add}, and all the forms of
     *       {@link #poll} and {@link #remove()}) run in {@code O(log n) time}.
     *   <li>The {@link #remove(Object)} and {@link #contains} operations require linear ({@code O(n)})
     *       time.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  7. 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)
  8. android/guava/src/com/google/common/collect/RangeSet.java

       */
      RangeSet<C> complement();
    
      /**
       * Returns a view of the intersection of this {@code RangeSet} with the specified range.
       *
       * <p>The returned view supports all optional operations supported by this {@code RangeSet}, with
       * the caveat that an {@link IllegalArgumentException} is thrown on an attempt to {@linkplain
       * #add(Range) add} any range not {@linkplain Range#encloses(Range) enclosed} by {@code view}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                someTask.finalizedBy lastTask
            """
            when:
            succeeds('classes', 'independentTask', 'someTask')
    
            then:
            def operations = this.operations()
            operations.size() == 2
            with(operations[0].result.taskPlan) {
                task.taskPath == [":compileJava", ":processResources", ":classes", ":independentTask", ":anotherTask", ":otherTask", ":someTask", ":lastTask"]
    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. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

    import org.gradle.internal.operations.CurrentBuildOperationRef;
    import org.gradle.internal.operations.DefaultBuildOperationIdFactory;
    import org.gradle.internal.operations.DefaultBuildOperationProgressEventEmitter;
    import org.gradle.internal.operations.DefaultBuildOperationRunner;
    import org.gradle.internal.operations.OperationFinishEvent;
    import org.gradle.internal.operations.OperationIdentifier;
    import org.gradle.internal.operations.OperationProgressEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top