Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 407 for Visiting (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListener.java

                return transformSteps;
            }
    
            @Override
            public void prepareForVisitingIfNotAlready() {
                // The parameters of the transforms should already be isolated prior to visiting this set.
                // However, in certain cases, the transform's parameters may not be isolated (eg https://github.com/gradle/gradle/issues/23116), so do this now
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    build --copt=-Wno-gnu-offsetof-extensions
    
    # Store performance profiling log in the mounted artifact directory.
    # The profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    build --profile=/tf/pkg/profile.json.gz
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionTest.groovy

            then:
            1 * visitor.startVisit(_, collection) >> true
            1 * source1.visitStructure(visitor)
            1 * source2.visitStructure(visitor)
            0 * _
        }
    
        void "listener can skip visiting children"() {
            def visitor = Mock(FileCollectionStructureVisitor)
            def source1 = Mock(FileCollectionInternal)
            def source2 = Mock(FileCollectionInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/resource/local/DefaultPathKeyFileStore.java

                    // We cannot clean in progress markers, or in progress files here because
                    // the file system visitor stuff can't handle the file system mutating while visiting
                    if (!isInProgressMarkerFile(file) && !isInProgressFile(file)) {
                        entries.add(entryAt(file));
                    }
                }
            });
    
            return entries;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

            // fine and we have a bug in deadness analysis.
            return errors::Internal("Could not find input ", in_edge->DebugString(),
                                    " to ", n->name(),
                                    " when visiting the graph in post-order.  Most "
                                    "likely indicates a bug in deadness analysis.");
          }
          result->push_back(it->second);
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/path/filepath/path.go

    				}
    			}
    		}
    	}
    	return nil
    }
    
    // WalkDir walks the file tree rooted at root, calling fn for each file or
    // directory in the tree, including root.
    //
    // All errors that arise visiting files and directories are filtered by fn:
    // see the [fs.WalkDirFunc] documentation for details.
    //
    // The files are walked in lexical order, which makes the output deterministic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            then:
            printGraph(result.rootSource.get()) == """org:root:1.0
      org:dep1:2.0(C) [root]
      org:dep2:3.0 -> org:dep2:3.0 - Could not resolve org:dep2:3.0.
    """
        }
    
        def "visiting resolved module version again has no effect"() {
            def root = rootNode(1, "org", "root", "1.0")
            def selector = selector(7, "org", "dep1", "2.0")
            root.outgoingEdges >> [dep(selector, 1, 2)]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

                }
            }
    
            expect:
            collection.buildDependencies.getDependencies(task) == [dependency1, dependency2] as LinkedHashSet
        }
    
        def "descendant can avoid visiting content when task dependencies are queried"() {
            def task = Stub(Task)
            def dependency1 = Stub(Task)
            def dependency2 = Stub(Task)
            def child1 = new TestCollection() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                    // TODO - hoist this up into configuration file collection visiting (and not when visiting the upstream dependencies of a transform), and deprecate this in Gradle 7.x
                    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            }
            return this;
        }
    
        @Override
        public TreeFormatter endChildren() {
            if (current.parent == null) {
                throw new IllegalStateException("Not visiting any node.");
            }
            if (current.state == State.CollectValue) {
                current.state = State.Done;
                current = current.parent;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top