Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for hierarchyOf (0.38 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    			options:  RunnerOptions{FilterPhases: []string{"foo/baz", "qux"}},
    			expected: map[string]bool{"foo": false, "foo/bar": false, "foo/baz": true, "qux": true},
    		},
    		{
    			name:     "options can filter phases - hierarchy is considered",
    			options:  RunnerOptions{FilterPhases: []string{"foo"}},
    			expected: map[string]bool{"foo": true, "foo/bar": true, "foo/baz": true, "qux": false},
    		},
    		{
    			name:     "options can skip phases",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    [[sec:settings_file]]
    == Always define a settings file
    
    Gradle tries to locate a `settings.gradle` (Groovy DSL) or a `settings.gradle.kts` (Kotlin DSL) file with every invocation of the build.
    For that purpose, the runtime walks the hierarchy of the directory tree up to the root directory.
    The algorithm stops searching as soon as it finds the settings file.
    
    Always add a `settings.gradle` to the root directory of your build to avoid the initial performance impact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

        get() = accessorTypePrecedenceSequence().find { it.isKotlinPublic }
    
    
    internal
    fun Class<*>.accessorTypePrecedenceSequence(): Sequence<Class<*>> = sequence {
    
        // First, all the classes in the hierarchy, subclasses before superclasses
        val classes = ancestorClassesIncludingSelf.toList()
        yieldAll(classes)
    
        // Then all supported interfaces sorted by subtyping (subtypes before supertypes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            createJarWithProperties("a/a/thing.jar")
            addIsCachedCheck()
            addIsCachedCheck("a")
            addIsCachedCheck("a/a")
    
            // Add this to make the hierarchy unique, avoiding interference with the numbers from previous builds
            file("build.gradle") << """
                buildscript {
                    dependencies { classpath files("thing.jar") }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example.MyFailingTest", methodName: "fail2", task: ":secondTest")
            // because of --continue we get a different exception hierarchy
            def e = thrown(BuildException)
            normaliseLineSeparators(e.cause.causes[0].cause.message) == "Execution failed for task ':secondTest'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

                generatedCode[it].noSubAccessors()
            }
    
            and:
            compiles()
        }
    
        def "generates accessors for complex hierarchy"() {
            when:
            generateSources project("root") {
                project("utils") {
                    project("json")
                    project("xml")
                }
                project("core")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceName.java

    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.ArrayList;
    import java.util.List;
    
    import static java.lang.String.format;
    
    /**
     * An immutable resource name. Resources are arranged in a hierarchy. Names may be relative, or absolute with some opaque root resource.
     */
    @NonNullApi
    public class ExternalResourceName implements Describable {
        @Nullable
        private final String encodedRoot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. operator/README.md

    #### Output to dirs
    
    The output of the manifest is concatenated into a single file. To generate a directory hierarchy with subdirectory
    levels representing a child dependency, use the following command:
    
    ```bash
    istioctl manifest generate -o istio_manifests
    ```
    
    Use depth first search to traverse the created directory hierarchy when applying your YAML files. This is needed for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

            }
            if (parametersType == noParamsType) {
                return null;
            }
            return parametersType;
        }
    
        /**
         * Walk the type hierarchy until we find the interface type and keep track the chain of the type parameters.
         *
         * E.g.: For `interface Baz<T>`, interface `Bar<T extends CharSequence> extends Baz<T>` and `class Foo implements Bar<String>`,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

        TestFile file
    
        TestFileHelper(TestFile file) {
            this.file = file
        }
    
        void unzipTo(File target, boolean nativeTools, boolean checkParentDirs = true) {
            // Check that each directory in hierarchy is present
            file.withInputStream { InputStream instr ->
                def dirs = [] as Set
                def zipStr = new ZipInputStream(instr)
                def entry
                while (entry = zipStr.getNextEntry()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top