Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for hierarchyOf (0.4 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. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  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. docs/security/README.md

    #### Figure 2 - KMS key hierarchy
    
    ```
                                                              CMK (master key)
                                                               |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top