Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 159 for ancestors (0.24 sec)

  1. testing/architecture-test/src/changes/archunit-store/internal-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.internal.artifacts.dependencies.AbstractModuleDependency.targetConfiguration don't use symmetrical @Nullable
    Accessors for org.gradle.api.internal.file.copy.CopySpecWrapper.dirMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.internal.file.copy.CopySpecWrapper.fileMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.internal.file.copy.DefaultCopySpec.dirMode don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.StartParameter.currentDir don't use symmetrical @Nullable
    Accessors for org.gradle.StartParameter.gradleUserHomeDir don't use symmetrical @Nullable
    Accessors for org.gradle.StartParameter.taskNames don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.dirMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.fileMode don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPredicate.java

         */
        @Nullable
        public ModelPath getParent() {
            return null;
        }
    
        /**
         * Return the path of the scope of the nodes to select, or null if ancestor is not relevant.
         *
         * <p>A node will be selected if its path or one of its ancestor's path equals the specified path.</p>
         */
        @Nullable
        public ModelPath getAncestor() {
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/assignment/tests/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
    - 31 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/accessors/tests/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
    - 31 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top