Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 292 for hierarchyOf (0.23 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/storage/continue.go

    		}
    		if len(c.StartKey) == 0 {
    			return "", 0, ErrEmptyStartKey
    		}
    		// defend against path traversal attacks by clients - path.Clean will ensure that startKey cannot
    		// be at a higher level of the hierarchy, and so when we append the key prefix we will end up with
    		// continue start key that is fully qualified and cannot range over anything less specific than
    		// keyPrefix.
    		key := c.StartKey
    		if !strings.HasPrefix(key, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 17:30:02 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top