Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 264 for hierarchy (0.17 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

    import org.gradle.platform.base.internal.VariantAspect;
    import org.gradle.reporting.ReportRenderer;
    import org.gradle.util.internal.GUtil;
    
    import java.util.Map;
    import java.util.TreeMap;
    
    // TODO - bust up this hierarchy and compose using interfaces instead
    public abstract class AbstractBinaryRenderer<T extends BinarySpec> extends ReportRenderer<BinarySpec, TextReportBuilder> {
        private final ModelSchemaStore schemaStore;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

                "",
                "buildscript { $repositoriesBlock }"
            )
        }
    
        def "sourcePath includes kotlin-stdlib sources resolved against project hierarchy"() {
    
            expect:
            assertSourcePathIncludesKotlinStdlibSourcesGiven(
                "buildscript { $repositoriesBlock }",
                ""
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.java

                case INSTRUMENTATION_MARKER:
                    // We don't need to do anything with the marker file
                    return;
                case TYPE_HIERARCHY_ANALYSIS_DATA:
                    // Type hierarchy analysis should never be an input to this transform
                default:
                    throw new IllegalStateException("Unexpected input type: " + inputType);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. maven-core/src/main/mdo/extension.mdo

        precisely control parts of the extension and dependencies to expose in the API class loader.
        Maven uses Plexus Classworlds to build the class loader hierarchy, therefore some concepts used in this extensions
        stem from Plexus Classworlds originally.
        <p><i>Notice:</i> this documentation is generated from a Modello model but the code executed is not generated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/common.go

    			name.EgressComponentName,
    		},
    		name.IstioBaseComponentName: {
    			name.PilotComponentName,
    		},
    		name.CNIComponentName: {
    			name.ZtunnelComponentName,
    		},
    	}
    
    	// InstallTree is a top down hierarchy tree of dependencies where children must wait for the parent to complete
    	// before starting installation.
    	InstallTree = make(ComponentTree)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

            then:
            eclipseModel.projectNatures.collect { it.id } == ['nature.a', 'nature.b']
        }
    
        def "nature list independent from project hierarchy"() {
            setup:
            project.eclipse.project.natures = ['nature.for.root']
            child1.eclipse.project.natures = ['nature.for.child1']
            child2.eclipse.project.natures = ['nature.for.child2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectPropertySettingBuildLoaderTest.groovy

            when:
            loader.load(settings, gradle)
    
            then:
            1 * target.load(settings, gradle)
            0 * target._
        }
    
        def "sets project properties on each project in hierarchy"() {
            given:
            2 * gradleProperties.mergeProperties([:]) >> [prop: 'value']
    
            when:
            loader.load(settings, gradle)
    
            then:
            1 * rootProperties.set('prop', 'value')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

            when:
            def op = ops.start("compile", null, new OperationIdentifier(1), null)
    
            then:
            op.parent == null
            op.operationId.id == 1L
        }
    
        def "maintains operation hierarchy"() {
            when:
            def op1 = ops.start("compile", null, new OperationIdentifier(1), null)
            def op2 = ops.start("resolve", null, new OperationIdentifier(2), new OperationIdentifier(1))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

         *
         * A path is contained in the set if it or one of its ancestors has
         * been added to the set.
         */
        public abstract boolean contains(String path);
    
        /**
         * Whether this hierarchy is empty, i.e. contains no directories.
         */
        public abstract boolean isEmpty();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        /**
         * Finds the parent symbol of the given [KaSymbol] by traversing back up the symbol hierarchy a certain number of steps,
         * or until the containing class or object symbol is found.
         *
         * @param symbol The [KaSymbol] whose parent symbol needs to be found.
         * @param goBackSteps The number of steps to go back up the symbol hierarchy.
         * @param selectedFqName The fully qualified name of the selected package.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top