Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for ancestors (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

         *
         * That includes node which access ancestors or children of the location.
         */
        public ImmutableSet<Node> getNodesAccessing(String location) {
            return visitValues(location, new CollectingNodeAccessVisitor());
        }
    
        /**
         * Visits all nodes which access the location.
         *
         * That includes node which access ancestors or children of the location.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/ValuedVfsHierarchy.java

         */
        @CheckReturnValue
        public ValuedVfsHierarchy<T> empty() {
            return emptyHierarchy(caseSensitivity);
        }
    
        /**
         * Visits the values which are attached to ancestors and children of the given location.
         */
        public void visitValues(String location, ValueVisitor<T> visitor) {
            VfsRelativePath relativePath = VfsRelativePath.of(location);
            if (relativePath.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:23:29 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. src/mdo/model-version.vm

                        #set ( $isAsso = false )
                        #if ( $field.toClass )
                            #set ( $ancestors = $Helper.ancestors( $field.toClass ) )
                            #foreach ( $cl in $ancestors )
                                #if ( $classToFields.containsKey( $cl ) )
                                    #set ( $isAsso = true )
                                #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/optional_symbol_ref.mlir

      func.func @main() {
        tf_executor.graph {
          %control = tf_executor.island wraps "tf.XlaHostCompute"() {_xla_original_oc_node_name = "Add", _xla_token_input_nodes = ["_xla_token_arg_node"], ancestors = [], cost_estimate_ns = 1024 : i64, key = "host_compute_channel_1_retvals", send_key = "", recv_key = "", shapes = [], tpu_core = 0 : i64} : () -> ()
          tf_executor.fetch
        }
        func.return
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 967 bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

                    visitor.onEndHtmlElement(element);
                }
            }
    
            private void unwindTo(Collection<String> ancestors, TokenVisitor visitor) {
                for (int i = 0; i < elementStack.size(); i++) {
                    if (ancestors.contains(elementStack.get(i))) {
                        for (; i > 0; i--) {
                            visitor.onEndHtmlElement(elementStack.removeFirst());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/prepare_tpu_computation_for_tf_export.mlir

    }
    
    // CHECK-LABEL: @RewriteHostComputeMlirOp
    func.func @RewriteHostComputeMlirOp(%arg0: tensor<*xf32>, %arg1: tensor<3x?xf64>) -> (tensor<*xf32>) {
    
      // CHECK: "tf.XlaHostCompute"(%arg0, %arg1)
      // CHECK-SAME: ancestors = []
      // CHECK-SAME: cost_estimate_ns = 1000000 : i64
      // CHECK-SAME: key = ""
      // CHECK-SAME: recv_key = "host_compute_channel_recv"
      // CHECK-SAME: send_key = "host_compute_channel_send"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 18:46:36 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/mdo/transformer.vm

            return transformer.apply(value);
        }
    
    #foreach ( $class in $model.allClasses )
      #if ( $class.name != "InputSource" && $class.name != "InputLocation" )
        #set ( $ancestors = $Helper.ancestors( $class ) )
        #set ( $allFields = $Helper.xmlFields( $class ) )
        protected ${class.name} transform${class.name}(${class.name} target) {
            if (target == null) {
                return null;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.h

    // If `use_external_constant` is true, it will create `tfl.external_const`
    // instead of `tfl.const`.
    // If `experimental_prune_unreachable_nodes_unconditionally` is true, nodes that
    // are not ancestors of the output nodes will be pruned.
    mlir::OwningOpRef<mlir::ModuleOp> FlatBufferToMlir(
        absl::string_view buffer, mlir::MLIRContext* context,
        mlir::Location base_loc, bool use_external_constant = false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/lca.go

    package ssa
    
    import (
    	"math/bits"
    )
    
    // Code to compute lowest common ancestors in the dominator tree.
    // https://en.wikipedia.org/wiki/Lowest_common_ancestor
    // https://en.wikipedia.org/wiki/Range_minimum_query#Solution_using_constant_time_and_linearithmic_space
    
    // lcaRange is a data structure that can compute lowest common ancestor queries
    // in O(n lg n) precomputed space and O(1) time per query.
    type lcaRange struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/ValuedVfsHierarchyTest.groovy

            "some/location/intermediate/child/sub1/leaf1" | [5]
            "some/location/intermediate/child/sub1/leaf2" | [6]
            "some/location/intermediate/child/sub3/leaf"  | [7]
        }
    
        def "can query ancestors values"() {
            ValuedVfsHierarchy<Integer> hierarchy = complexHierarchy()
    
            when:
            def visitor = new CollectingValueVisitor()
            hierarchy.visitValues(location, visitor)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:21:57 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top