Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for hierarchy (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                buildscript { dependencies { classpath(files('${someLib.toURI()}')) } }
            """
    
            // Load the StaticData class in the different sub-sub-projects
            // for a more interesting ClassLoader hierarchy.
            for (projectDir in ['foo/foo', 'bar/bar']) {
                file("$projectDir/build.gradle") << """
                    buildscript { dependencies { classpath(files('${staticDataLib.toURI()}')) } }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K 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. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        /**
         * Gets all the super types of the given type. The returned result is ordered by a BFS traversal of the class hierarchy, without any
         * duplicates.
         *
         * @param shouldApproximate see [getDirectSuperTypes]
         */
        public fun KaType.getAllSuperTypes(shouldApproximate: Boolean = false): List<KaType> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                    equalTo(42)
                )
                assertThat(it.someInt, equalTo(13))
            }
        }
    
        @Test
        fun `can handle multiple writeObject implementations in the hierarchy`() {
            verifyRoundtripOf({ MultiWriteObjectBean() }) { bean ->
                assertThat(
                    bean.stringValue,
                    equalTo("42")
                )
                assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

         */
        void initGitDir() {
            Git.init().setDirectory(testDirectory).call().withCloseable { Git git ->
                // Clear config hierarchy to avoid global configuration loaded from user home
                for (Config config = git.repository.config; config != null; config = config.getBaseConfig()) {
                    //noinspection GroovyAccessibility
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                for (String moduleName : outputModules.getModuleNames().values()) {
                    Path subdir = test;
                    if (isModuleHierarchy) {
                        // If module hierarchy is used, the directory names shall be the module names.
                        Path path = test.resolve(moduleName);
                        if (!Files.isDirectory(path)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    * **Roles**: Configuration roles should be set upon creation and not changed afterward.
    * **Hierarchy**: Configuration hierarchy (`extendsFrom`) should be set upon creation. Mutating the hierarchy prior to resolution is highly discouraged, but is permitted within a `withDependencies` hook.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// Watcher of out of memory events.
    	oomWatcher oomwatcher.Watcher
    
    	// Monitor resource usage
    	resourceAnalyzer serverstats.ResourceAnalyzer
    
    	// Whether or not we should have the QOS cgroup hierarchy for resource management
    	cgroupsPerQOS bool
    
    	// If non-empty, pass this to the container runtime as the root cgroup.
    	cgroupRoot string
    
    	// Mounter to use for volumes.
    	mounter mount.Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		// in case a combination is lost
    		klog.V(3).InfoS("Programmer error, did not report a kubelet_working_pods metric for a value returned by SyncKnownPods", "counts", counts)
    	}
    
    	// Remove any cgroups in the hierarchy for pods that are definitely no longer
    	// running (not in the container runtime).
    	if kl.cgroupsPerQOS {
    		pcm := kl.containerManager.NewPodContainerManager()
    		klog.V(3).InfoS("Clean up orphaned pod cgroups")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    // For packages, the order of scanning is determined lexically in breadth-first order.
    // That is, the package presented is the one that matches the search and is nearest
    // the root and lexically first at its level of the hierarchy. The GOROOT tree is
    // always scanned in its entirety before GOPATH.
    //
    // If there is no package specified or matched, the package in the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top