Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for hierarchyOf (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/cm/container_manager_linux.go

    	}
    
    	// since we use this container for accounting, we need to ensure its a unified hierarchy.
    	if cpu != memory {
    		return "", fmt.Errorf("cpu and memory cgroup hierarchy not unified.  cpu: %s, memory: %s", cpu, memory)
    	}
    
    	// on systemd, every pid is in a unified cgroup hierarchy (name=systemd as seen in systemd-cgls)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

                    return;
                case INSTRUMENTATION_MARKER:
                case TYPE_HIERARCHY_ANALYSIS_DATA:
                    // We don't need to do anything with the marker file and type hierarchy
                    return;
                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
    - 6.4K bytes
    - Viewed (0)
Back to top