Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 365 for ancestors (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    func WalkASTWithParent(n ast.Node, f func(n ast.Node, parent ast.Node) bool) {
    	var ancestors []ast.Node
    	ast.Inspect(n, func(n ast.Node) (recurse bool) {
    		if n == nil {
    			ancestors = ancestors[:len(ancestors)-1]
    			return false
    		}
    
    		var parent ast.Node
    		if len(ancestors) > 0 {
    			parent = ancestors[len(ancestors)-1]
    		}
    		ancestors = append(ancestors, n)
    		return f(n, parent)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          a.attr(), b.attr(), [](const string& s) { return s; },
          [](const AttrValue& v) { return v.DebugString(); },
          [](const string& key, const AttrValue& av, const AttrValue& bv) {
            if (key == "ancestors") {
              // The ancestors are added from a set so the order is unpredictable;
              // just compare set equality not list equality.
              std::unordered_set<string> a_set(av.list().s().begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  8. 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)
  9. src/mdo/merger.vm

        }
    
    #foreach ( $class in $model.allClasses )
      #if ( $class.name != "InputSource" && $class.name != "InputLocation" )
        #set ( $ancestors = $Helper.ancestors( $class ) )
        #set ( $allFields = [] )
        #foreach ( $cl in $ancestors )
          #set ( $dummy = $allFields.addAll( $cl.getFields($version) ) )
        #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. 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)
Back to top