Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for ancestors (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors.kt

     */
    
    package org.gradle.kotlin.dsl.accessors.tasks
    
    import org.gradle.api.DefaultTask
    import org.gradle.api.Project
    import org.gradle.api.tasks.TaskAction
    import org.gradle.internal.serialization.Cached
    
    import org.gradle.kotlin.dsl.accessors.ProjectSchemaProvider
    import org.gradle.kotlin.dsl.accessors.TypedProjectSchema
    import org.gradle.kotlin.dsl.accessors.accessible
    import org.gradle.kotlin.dsl.accessors.accessorsFor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

        if (parent == nullptr) return true;
        Operation *ancestor = block->findAncestorOpInBlock(*parent);
        // - it is an implicit capture,
        if (ancestor == nullptr) return true;
        // - it is defined in a nested region, or
        if (ancestor == top) return true;
        // - its ancestor in the block has already been scheduled.
        return unscheduled_ops.find(ancestor) == unscheduled_ops.end();
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    	size := 0
    	for _, cfg := range configurations {
    		size += len(cfg.Webhooks)
    	}
    	accessors := make([]webhook.WebhookAccessor, 0, size)
    
    	for _, c := range configurations {
    		cachedConfigurationAccessors, ok := m.configurationsCache.Load(c.Name)
    		if ok {
    			// Pick an already cached webhookAccessor
    			accessors = append(accessors, cachedConfigurationAccessors.([]webhook.WebhookAccessor)...)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/AccessorsClassPathModelCrossVersionSpec.groovy

        def "classpath model includes jit accessors by default"() {
    
            given:
            withDefaultSettings()
            withBuildScript("""
                plugins { java }
            """)
    
            expect:
            assertAccessorsInClassPathOf(buildFileKts)
        }
    
        def "jit accessors can be turned off"() {
    
            given:
            withDefaultSettings()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager.go

    	size := 0
    	for _, cfg := range configurations {
    		size += len(cfg.Webhooks)
    	}
    	accessors := make([]webhook.WebhookAccessor, 0, size)
    
    	for _, c := range configurations {
    		cachedConfigurationAccessors, ok := v.configurationsCache.Load(c.Name)
    		if ok {
    			// Pick an already cached webhookAccessor
    			accessors = append(accessors, cachedConfigurationAccessors.([]webhook.WebhookAccessor)...)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top