Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 264 for hierarchy (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kubelet/cm/pod_container_manager_linux.go

    	podContainerName, _ := m.GetPodContainerName(pod)
    	return m.cgroupManager.Exists(podContainerName)
    }
    
    // EnsureExists takes a pod as argument and makes sure that
    // pod cgroup exists if qos cgroup hierarchy flag is enabled.
    // If the pod level container doesn't already exist it is created.
    func (m *podContainerManagerImpl) EnsureExists(pod *v1.Pod) error {
    	// check if container already exist
    	alreadyExists := m.Exists(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. 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)
  6. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    		// Register current phase as part of its own parent hierarchy
    		parent := p.parent
    		for parent != nil {
    			phaseHierarchy[parent.generatedName] = append(phaseHierarchy[parent.generatedName], p.generatedName)
    			parent = parent.parent
    		}
    		return nil
    	})
    
    	// If a filter option is specified, set all phaseRunFlags to false except for
    	// the phases included in the filter and their hierarchy of nested phases.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

            json.replace('"formatVersion": "1.1"', '"formatVersion": "' + metadataVersion + '"')
        }
    
        def "new hierarchy in ModuleDependency is added to equals and hashcode"() {
            when:
            // If this test fails, you added a type hierarchy to GradleModuleMetadataParser.ModuleDependency, update this test _after_ making sure it is considered by hashcode and equals
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractIncrementalCompileIntegrationTest.groovy

            skipped getAppCompileTask(language)
    
            where:
            from  | to
            true  | false
            false | true
        }
    
        def "removes stale class file when file moves in hierarchy"() {
            given:
            file("src/main/${language.name}/IPerson.${language.name}") << basicInterface
            buildFile << """
                apply plugin: '${language.name}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            given:
            dependency "org.test:buildB:1.0"
            dependency "org.test:buildC:1.0"
    
            def buildC = file("hierarchy", "buildB")
            buildC.file('settings.gradle') << """
                rootProject.name = 'buildC'
    """
            buildC.file('build.gradle') << """
                apply plugin: 'java'
                apply plugin: 'idea'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top