Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 214 for descendents (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

            outputContains("child: [11]")
        }
    
        @ToBeFixedForConfigurationCache(because = "test expects scripts evaluation")
        def "methods defined in project build script are visible to script plugins applied to project and descendants"() {
            createDirs("child1")
            settingsFile << "include 'child1'"
            buildFile << """
    def doSomething(def value) {
        return "{" + value + "}"
    }
    private String doSomethingElse(def value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathTest.groovy

            !ModelPath.path("a.b").isDescendant(null)
        }
    
        def "can create paths for indirect descendants"() {
            expect:
            ModelPath.ROOT.descendant(ModelPath.path("c.d")) == ModelPath.path("c.d")
            ModelPath.path("a.b").descendant(ModelPath.path("c.d")) == ModelPath.path("a.b.c.d")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

                it.child "Configure project :a"
                it.descendant "Download ${server.uri}${projectB.pomPath}"
                it.descendant "Download ${server.uri}/repo/group/projectC/maven-metadata.xml"
                it.descendant "Download ${server.uri}${projectC.pomPath}"
                it.descendant "Download ${server.uri}${projectD.metaDataPath}"
                it.descendant "Download ${server.uri}${projectD.pomPath}"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. cmd/metrics-v3-types.go

    }
    
    // isDescendantOf returns true if it is a descendant of (or the same as)
    // `ancestor`.
    //
    // For example:
    //
    //	 	/a, /a/b, /a/b/c are all descendants of /a.
    //		/abc or /abd/a are not descendants of /ab.
    func (cp collectorPath) isDescendantOf(arg string) bool {
    	descendant := string(cp)
    	if descendant == arg {
    		return true
    	}
    	if len(arg) >= len(descendant) {
    		return false
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      current_layer_descendants.push_back(op);
      // BFS downstream ops for current user.
      // If any one of the descendants meet one of the three conditions, we return
      // false for the current value:
      // 1: The descendant is not in the ops_to_add.
      // 2: The descendant is not a stablehlo op.
      // 3: The depth of the descendant is larger than 5, we don't want to search
      // too deep, max depth is arbitrarily chosen.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

         */
        @CheckReturnValue
        public abstract FileHierarchySet plus(File path);
    
        /**
         * Returns a set that contains the union of this set and the given absolute path. The set contains the path itself, plus all its descendants.
         */
        @CheckReturnValue
        public abstract FileHierarchySet plus(String absolutePath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

                data.dependents.forEach(dependents::put);
                if (fullRebuildCause == null) {
                    fullRebuildCause = data.fullRebuildCause;
                }
            }
            ImmutableMap.Builder<String, DependentsSet> mergedDependents = ImmutableMap.builderWithExpectedSize(dependents.size());
            for (Map.Entry<String, Collection<DependentsSet>> entry : dependents.asMap().entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

            propertiesFile << "org.gradle.caching=true"
    
            when:
            runCustomTask()
    
            then:
            def task = events.operation("Task :custom")
            task.descendant("Snapshot inputs and outputs before executing task ':custom'")
            task.descendant("Snapshot outputs after executing task ':custom'")
        }
    
        def "task actions implemented in annotated methods are named after the method"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

            }
    
            Operation descendant(String... displayNames) {
                def found = descendants { it.descriptor.displayName in displayNames }
                if (found.size() == 1) {
                    return found[0]
                }
                if (found.empty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisDataSerializerTest.groovy

            then:
            read.dependents.keySet() == data.dependents.keySet()
    
            ["A", "B", "C"].each {
                assert read.dependents[it].privateDependentClasses == data.dependents[it].privateDependentClasses
                assert read.dependents[it].accessibleDependentClasses == data.dependents[it].accessibleDependentClasses
                assert read.dependents[it].dependencyToAll == data.dependents[it].dependencyToAll
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top