Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for ancestors (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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