Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 171 for ancestors (0.13 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/noAccessors/tests/no-accessors.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/dom.go

    func compressOrig(v ID, ancestor, semi, label []ID) {
    	if ancestor[ancestor[v]] != 0 {
    		compressOrig(ancestor[v], ancestor, semi, label)
    		if semi[label[ancestor[v]]] < semi[label[v]] {
    			label[v] = label[ancestor[v]]
    		}
    		ancestor[v] = ancestor[ancestor[v]]
    	}
    }
    
    // evalOrig is the "simple" eval function from LT paper.
    func evalOrig(v ID, ancestor, semi, label []ID) ID {
    	if ancestor[v] == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

        previous_op = best;
        for (Value result : best->getResults()) {
          todo.push(result);
        }
        for (Operation* successor : ctrlSuccessors(best)) {
          if (ancestor.find(successor) != ancestor.end()) {
            successor = ancestor[successor];
            remaining_incoming_ctrl_edges[successor]--;
            if (remaining_incoming_ctrl_edges[successor] == 0 &&
                remaining_incoming_data_edges[successor] == 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverSpec.groovy

            assert file.exists() && file.file
    
            expect:
            normalize(file) == file
        }
    
        def "normalizes relative path"() {
            def ancestor = new File(tmpDir.testDirectory, "test")
            def baseDir = new File(ancestor, "base")
            def sibling = new File(ancestor, "sub")
            def child = createFile(new File(baseDir, "a/b/file.txt"))
    
            expect:
            normalize("a/b/file.txt", baseDir) == child
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodePredicate.java

            private final ModelPath parent;
            private final ModelPath ancestor;
            private final Predicate<? super MutableModelNode> matcher;
    
            public BasicPredicate(ModelPath path, ModelPath parent, ModelPath ancestor, Predicate<? super MutableModelNode> matcher) {
                this.path = path;
                this.parent = parent;
                this.ancestor = ancestor;
                this.matcher = matcher;
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

      void runOnOperation() override;
    };
    
    // Get the ancestor of `descendant` that is a direct child of `ancestor`.
    Operation* GetAncestorBelow(Operation* descendant, Operation* ancestor) {
      Operation* parent = descendant->getParentOp();
      if (!parent) return nullptr;
      if (parent == ancestor) return descendant;
      return GetAncestorBelow(parent, ancestor);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelPropertyExtractionContext.java

        public ModelPropertyExtractionContext(String propertyName) {
            this.propertyName = propertyName;
            this.accessors = Maps.newEnumMap(PropertyAccessorType.class);
        }
    
        public String getPropertyName() {
            return propertyName;
        }
    
        public boolean isReadable() {
            return hasGetter(accessors.keySet());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/KotlinCompatibilityTest.java

            return new ArchCondition<JavaClass>("have accessors with symmetrical @Nullable annotations") {
                @Override
                public void check(JavaClass item, ConditionEvents events) {
                    findMutableProperties(item).stream()
                        .filter(accessors -> !accessors.nullableIsSymmetric())
                        .map(accessor -> violated(item, String.format("Accessors for %s don't use symmetrical @Nullable", accessor)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

        def setup() {
            settingsFile << """
                rootProject.name = 'typesafe-project-accessors'
            """
        }
    
        def "generates type-safe project accessors for multi-project build"() {
            given:
            createDirs("one", "one/other", "two", "two/other")
            settingsFile << """
                include 'one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/SnapshotWatchedDirectoryFinder.java

                    // TODO Can this happen on Windows when a SUBST'd drive is unregistered?
                    throw new IllegalStateException("Couldn't find existing ancestor for " + path);
                }
                // TODO Use the VFS to find the ancestor instead
                if (candidate.isDirectory()) {
                    return candidate;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top