Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 142 for hierarchyOf (0.38 sec)

  1. 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)
  2. 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)
  3. .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)
  4. 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)
  5. architecture/build-state-model.md

    # Build state model
    
    The Gradle daemon tracks state for various elements. These are arranged in a hierarchy:
    
    ```mermaid
      graph TD
    
      process["build process"]
      
      session["build session"]
      process --> session
      
      build_tree["build tree"]
      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

                MutationValidator.MutationType.DEPENDENCY_CONSTRAINT_ATTRIBUTES,
                MutationValidator.MutationType.ARTIFACTS,
                MutationValidator.MutationType.USAGE,
                MutationValidator.MutationType.HIERARCHY
            ]
        }
    
        def "does not reevaluate component metadata when #mutationType change"() {
            componentIdentifierFactory.createComponentIdentifier(_) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. docs/en/docs/benchmarks.md

    The simpler the problem solved by the tool, the better performance it will get. And most of the benchmarks don't test the additional features provided by the tool.
    
    The hierarchy is like:
    
    * **Uvicorn**: an ASGI server
        * **Starlette**: (uses Uvicorn) a web microframework
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            this.getEventRegister().registerLazyAddAction(x -> rootComponentMetadataBuilder.getValidator().validateMutation(MutationValidator.MutationType.HIERARCHY));
            this.whenObjectRemoved(x -> rootComponentMetadataBuilder.getValidator().validateMutation(MutationValidator.MutationType.HIERARCHY));
        }
    
        @Override
        @SuppressWarnings("deprecation")
        protected Configuration doCreate(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilderTest.groovy

            outgoing.getCapabilities() >> Collections.emptySet()
    
            configuration.isCanBeDeclared() >> true
            configuration.name >> "config"
            configuration.extendsFrom >> []
            configuration.hierarchy >> [configuration]
            configuration.outgoing >> outgoing
            configuration.dependencies >> dependencySet
            configuration.dependencyConstraints >> dependencyConstraintSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

                // A normal gradle build does this by adding the MixInLegacyTypesClassLoader to the class loader hierarchy.
                // In a test run, which is essentially a plain Java application, the classpath is flattened and injected
                // into the system class loader and there exists no Gradle class loader hierarchy in the running test. (See Implementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top