Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 142 for hierarchyOf (0.19 sec)

  1. 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)
  2. 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)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

            if (!watchedFiles.equals(oldWatchedFiles)) {
                updateWatchesOnChangedWatchedFiles(watchedFiles);
            }
    
            // Probe every hierarchy that is watched, even ones nested inside others
            ImmutableSet<File> oldProbedHierarchies = probedHierarchies;
            probedHierarchies = watchableHierarchies.stream()
                .filter(watchedFiles::contains)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

         * slightly increasing the speed a test class runs, especially one with many test methods defined on itself or in its type hierarchy.
         */
        private final static Set<String> EXTRACTED_JARS = new HashSet<>();
        private final TestDirectoryProvider testDirectoryProvider;
    
        private Class<?> declaringTestClass;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    [[sec:settings_file]]
    == Always define a settings file
    
    Gradle tries to locate a `settings.gradle` (Groovy DSL) or a `settings.gradle.kts` (Kotlin DSL) file with every invocation of the build.
    For that purpose, the runtime walks the hierarchy of the directory tree up to the root directory.
    The algorithm stops searching as soon as it finds the settings file.
    
    Always add a `settings.gradle` to the root directory of your build to avoid the initial performance impact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * A factory for a worker process which loads the application classes using the JVM's system ClassLoader.
     *
     * <p>Class loader hierarchy:</p>
     * <pre>
     *                       jvm bootstrap
     *                             |
     *                             |
     *                        jvm system
     *           (GradleWorkerMain, application classes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleComponentResolveMetadata.java

     *
     * The realised part is about the application of {@link VariantMetadataRules} which are applied eagerly
     * to configuration or variant data.
     *
     * This type hierarchy is used whenever the {@code ModuleComponentResolveMetadata} needs to outlive
     * the build execution.
     */
    public abstract class AbstractRealisedModuleComponentResolveMetadata extends AbstractModuleComponentResolveMetadata {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            runtime.artifacts.name.name == ["runtime.jar"]
            runtime.excludes.empty
            def defaultConfig = immutable.getConfiguration("default")
            defaultConfig.hierarchy as List == ["default", "runtime"]
            defaultConfig.transitive
            defaultConfig.visible
            defaultConfig.artifacts.name.name == ["api.jar", "runtime.jar"]
            defaultConfig.excludes.empty
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * #getRepositories()} method to manage the repositories.</p>
     *
     * <h3>Multi-project Builds</h3>
     *
     * <p>Projects are arranged into a hierarchy of projects. A project has a name, and a fully qualified path which
     * uniquely identifies it in the hierarchy.</p>
     *
     * <h3>Plugins</h3>
     *
     * <p>
     * Plugins can be used to modularise and reuse project configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

        get() = accessorTypePrecedenceSequence().find { it.isKotlinPublic }
    
    
    internal
    fun Class<*>.accessorTypePrecedenceSequence(): Sequence<Class<*>> = sequence {
    
        // First, all the classes in the hierarchy, subclasses before superclasses
        val classes = ancestorClassesIncludingSelf.toList()
        yieldAll(classes)
    
        // Then all supported interfaces sorted by subtyping (subtypes before supertypes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top