Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for hierarchyOf (0.23 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            given:
            dependency "org.test:buildB:1.0"
            dependency "org.test:buildC:1.0"
    
            def buildC = file("hierarchy", "buildB")
            buildC.file('settings.gradle') << """
                rootProject.name = 'buildC'
    """
            buildC.file('build.gradle') << """
                apply plugin: 'java'
                apply plugin: 'idea'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    	}
    
    	// since we use this container for accounting, we need to ensure its a unified hierarchy.
    	if cpu != memory {
    		return "", fmt.Errorf("cpu and memory cgroup hierarchy not unified.  cpu: %s, memory: %s", cpu, memory)
    	}
    
    	// on systemd, every pid is in a unified cgroup hierarchy (name=systemd as seen in systemd-cgls)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. docs/security/README.md

    #### Figure 2 - KMS key hierarchy
    
    ```
                                                              CMK (master key)
                                                               |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top