Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 171 for ancestors (0.27 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            expect:
            assertNodesAccessing("/some", ancestor, child, grandChild)
            assertNodesAccessing("/some/location", ancestor, child, grandChild)
            assertNodesAccessing("/some/location/child/within", ancestor, child, grandChild)
            assertNodesAccessing("/some/location/child/other", ancestor)
        }
    
        def "ancestor accesses location"() {
            def node1 = Mock(Node)
            def node2 = Mock(Node)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

            then:
            textOutputFactory.toString() == "{TestEventLogger}{INFO}${sep}a test {failure}FAILED{normal}${sep}"
        }
    
        def "logging of atomic test whose ancestors don't have a test class"() {
            createLogger(LogLevel.INFO)
            def testSuiteDescriptor = new SimpleTestDescriptor(name: "Tests", displayName: "Tests", className: null, composite: true, parent: workerDescriptor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

    // the operations.
    // NOLINTNEXTLINE
    static opt<bool, true> experimental_prune_unreachable_nodes_unconditionally_flg(
        "experimental-prune-unreachable-nodes-unconditionally",
        llvm::cl::desc("Prune nodes that are not ancestors of the output nodes."),
        llvm::cl::location(experimental_prune_unreachable_nodes_unconditionally),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static opt<std::string> input_arrays_flag(
        "input-arrays",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/compress/flate/huffman_code.go

    	// be a legitimate value that never gets chosen.
    	var levels [maxBitsLimit]levelInfo
    	// leafCounts[i] counts the number of literals at the left
    	// of ancestors of the rightmost node at level i.
    	// leafCounts[i][j] is the number of literals at the left
    	// of the level j ancestor.
    	var leafCounts [maxBitsLimit][maxBitsLimit]int32
    
    	for level := int32(1); level <= maxBits; level++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/accessors/accessors.kt

     * limitations under the License.
     */
    @file:Suppress("deprecation")
    package gradlebuild.basics.accessors
    
    import org.gradle.api.Project
    import org.gradle.api.file.SourceDirectorySet
    
    import org.gradle.kotlin.dsl.*
    import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
    
    
    // TODO these accessors should be generated - https://github.com/gradle/gradle/issues/3191
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top