Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 265 for hierarchy (0.14 sec)

  1. 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)
  2. .teamcity/README.md

    ## Project structure
    
    Mostly a standard Maven project structure. The entry point `settings.kts` defines the TeamCity project.
    
    There are 3 subprojects in the TeamCity project hierarchy: `Check` for Gradle builds, `Promotion` for releasing Gradle versions, `Util` for miscellaneous utilities.
    
    ## Develop and verify
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/AbstractTestLogger.java

            }
            if (current.getParent() != null) {
                // If there is a parent, then check that the grandparent has no test class.
                // There is currently no requirement to check further up the descriptor hierarchy than this.
                return current.getParent().getParent() == null || current.getParent().getParent().getClassName() == null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesLocalComponentIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/26377")
        def "ResolvedVariantResults reported by ResolutionResult and ArtifactCollection have same capabilities when they are added to configuration in hierarchy"() {
            settingsFile << "include 'producer'"
            file("producer/build.gradle") << """
                group="com.foo"
    
                task zip(type: Zip) {
                    archiveFileName = "producer.zip"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 03:06:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/type/ModelTypes.java

            for (ModelType<?> type : types) {
                builder.add(type.getDisplayName());
            }
            return builder.build();
        }
    
        /**
         * Collect all types that make up the type hierarchy of the given types.
         */
        public static Set<ModelType<?>> collectHierarchy(Iterable<? extends ModelType<?>> types) {
            Queue<ModelType<?>> queue = new ArrayDeque<ModelType<?>>(Iterables.size(types) * 2);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. pkg/test/framework/features/README.md

    first case, and the second case has no scenario.
    
    The hierarchical nature of feature labels allows us to aggregate data about related feature sets.  To provide for consistent reporting and aggregation, we have defined the top two layers of hierarchy, and ask that you place your feature under these headings.  For more detail on the purpose of each heading, see Top-Level Feature Headings below.  If you feel that none of the existing headings fit your feature, please check with the Test and Release...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/filter/filter.go

    )
    
    // GetMatchingPaths returns a slice of matching paths, given a cluster tree and config.
    // config is the capture configuration.
    // cluster is the structure representing the cluster resource hierarchy.
    func GetMatchingPaths(config *config.BugReportConfig, cluster *cluster2.Resources) ([]string, error) {
    	paths, err := getMatchingPathsForSpec(config, cluster)
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/cluster/cluster.go

    	}
    
    	return out, nil
    }
    
    // Resources defines a tree of cluster resource names.
    type Resources struct {
    	// Root is the first level in the cluster resource hierarchy.
    	// Each level in the hierarchy is a map[string]interface{} to the next level.
    	// The levels are: namespaces/deployments/pods/containers.
    	Root map[string]any
    	// Labels maps a pod name to a map of labels key-values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

                    .ifPresent(afterExecutionState -> history.store(
                        context.getIdentity().getUniqueId(),
                        // TODO: Encode the "no cache key available" case in the context type hierarchy
                        afterExecutionState)));
            return result;
        }
    
        private static <C extends PreviousExecutionContext> boolean shouldPreserveFailedState(C context, ExecutionOutputState afterExecutionOutputState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationTestUtils.groovy

            assert testTestOps*.details.testDescriptor.composite == [false, false]
    
            // outputs are emitted in test build operation hierarchy
            def testSuiteOutput = firstLevelTestOps[1].progress
            assert testSuiteOutput.size() == 4
            assert testSuiteOutput*.details.output.message.collect {
                normaliseLineSeparators(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top