Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for hierarchyOf (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

                    compositeSubstitute()
                }
            }
        }
    
        def "resolves project substitution for build based on rootProject name"() {
            given:
            def buildB2 = rootDir.file("hierarchy", "buildB");
            buildB2.file('settings.gradle') << """
                rootProject.name = 'buildB2'
    """
            buildB2.file('build.gradle') << """
                apply plugin: 'java'
                group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

         *
         * The `confs` mapping is structured as `fromConfiguration -&gt; [targetConf...]`. Targets are collected for all configurations in the `fromConfiguration` hierarchy.
         *   - '*' is a wildcard key, that matches _all_ `fromConfiguration values.
         *       - '*, !A' is a key that matches _all_ `fromConfiguration values _except_ 'A'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

        localClassPath: ClassPath,
        localSourcePath: ClassPath
    ): IntermediateScriptModel? {
    
        val buildScript = project.discoverBuildScript()
            ?: return null
    
        // TODO:isolated this relies on the hierarchy of classloaders
        val compilationClassPath = project.scriptCompilationClassPath
    
        val accessorsClassPath = project.serviceOf<ClassPathModeExceptionCollector>().runCatching {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                    }
                }
            """
    
            then:
            run("help")
        }
    
        def "external dependencies merge analysis is #mergeRun if type hierarchy #typeHierachyChange for local project"() {
            given:
            withIncludedBuild()
            file("included/src/main/java/Foo.java") << "class Foo {}"
            file("included/src/main/java/Bar.java") << "class Bar {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeResolver.java

     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
     * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
     * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in
     * the context of {@code class MyStringList implements List<String>}). In such case, prefer to use
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            childSpec.addChildSpecListener((path, spec) -> {
                CopySpecAddress childPath = new DefaultCopySpecAddress(null, DefaultCopySpec.this, additionIndex).append(path);
                fireChildSpecListeners(childPath, spec);
            });
    
            // Notify upwards of currently existing descendant spec hierarchy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/TypeResolver.java

     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
     * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
     * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in
     * the context of {@code class MyStringList implements List<String>}). In such case, prefer to use
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
Back to top