Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 937 for iterations (0.27 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.internal.taskgraph.CalculateTaskGraphBuildOperationType
    import org.gradle.internal.taskgraph.CalculateTreeTaskGraphBuildOperationType
    import org.gradle.launcher.exec.RunBuildBuildOperationType
    import org.gradle.operations.lifecycle.FinishRootBuildTreeBuildOperationType
    import org.gradle.operations.lifecycle.RunRequestedWorkBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K 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. 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)
  4. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AlreadyOnClasspathPluginUseIntegrationTest.groovy

            file("a/b/build.gradle") << requestPlugin("my-plugin")
    
            when:
            succeeds "help"
    
            then:
            operations.hasOperation("Apply plugin my-plugin to root project 'root'")
            !operations.hasOperation("Apply plugin my-plugin to project ':a'")
            operations.hasOperation("Apply plugin my-plugin to project ':a:b'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/collect/AbstractBiMap.java

      }
    
      void setInverse(AbstractBiMap<V, K> inverse) {
        this.inverse = inverse;
      }
    
      // Query Operations (optimizations)
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
        return inverse.containsKey(value);
      }
    
      // Modification Operations
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top