Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 365 for ancestors (0.19 sec)

  1. src/mdo/model-v3.vm

        #set ( $dummy = $allClasses.add( $class ) )
      #end
    #end
    #foreach ( $class in $allClasses )
      #set ( $ancestors = $Helper.ancestors( $class ) )
      #set ( $allFields = [] )
      #set ( $inheritedFields = [] )
      #foreach ( $cl in $ancestors )
        #if ( $cl != $class )
          #set ( $dummy = $inheritedFields.addAll( $cl.allFields ) )
        #end
        #set ( $dummy = $allFields.addAll( $cl.allFields ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

         *
         * A file is contained in the set if it or one of its ancestors has
         * been added to the set.
         */
        public abstract boolean contains(File file);
    
        /**
         * Checks if the given path is contained in the set.
         *
         * A path is contained in the set if it or one of its ancestors has
         * been added to the set.
         */
        public abstract boolean contains(String path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        visited.insert(item.cluster);
    
        stack.push_back({item.cluster, true});
        const auto& iter = ancestors.find(item.cluster);
        if (iter != ancestors.end()) {
          for (const auto& ancestor : iter->second) {
            stack.push_back({ancestor, false});
          }
        }
      }
      CHECK(sorted->size() == clusters.size());
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. src/mdo/model.vm

    #set ( $package = "${packageModelV4}" )
    #set ( $root = $model.getClass( $model.getRoot($version), $version ) )
    #foreach ( $class in $model.allClasses )
      #set ( $ancestors = $Helper.ancestors( $class ) )
      #set ( $allFields = [] )
      #set ( $inheritedFields = [] )
      #foreach ( $cl in $ancestors )
        #if ( $cl != $class )
          #set ( $dummy = $inheritedFields.addAll( $cl.getFields($version) ) )
        #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            parent1.ownStrictVersionConstraints != StrictVersionConstraints.EMPTY
            parent2.ownStrictVersionConstraints == StrictVersionConstraints.EMPTY
        }
    
        def "computes intersection of ancestors"() {
            when:
            def parent1Edge = edge(root, false)
            def parent2Edge = edge(root, false)
            def parent1 = parent1Edge.targetComponent.nodes[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            expect:
            assertNodesAccessing("/some", ancestor, child, grandChild)
            assertNodesAccessing("/some/location", ancestor, child, grandChild)
            assertNodesAccessing("/some/location/child/within", ancestor, child, grandChild)
            assertNodesAccessing("/some/location/child/other", ancestor)
        }
    
        def "ancestor accesses location"() {
            def node1 = Mock(Node)
            def node2 = Mock(Node)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    }
    
    // Checks if an op is a supported HLO control flow op.
    bool IsControlFlowOp(Operation* op) { return isa<IfOp, WhileOp>(op); }
    
    // Collects control flow op ancestors of a given op, up until FuncOp. If any
    // ancestor is not a control flow op or a FuncOp, or of a single block region,
    // an error will be returned.
    LogicalResult GetControlFlowAncestors(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top