Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 265 for hierarchy (0.12 sec)

  1. 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)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeGradleProjectBuilder.java

    import static java.util.stream.Collectors.toList;
    import static org.gradle.api.internal.project.ProjectHierarchyUtils.getChildProjectsForInternalUse;
    
    /**
     * Builds the {@link GradleProject} model that contains the project hierarchy and task information.
     */
    @NonNullApi
    public class IsolatedProjectsSafeGradleProjectBuilder implements GradleProjectBuilderInternal {
    
        private static final String MODEL_NAME = "org.gradle.tooling.model.GradleProject";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/index.apt

     * {{{./extension.html}extension descriptor}} and {{{./core-extensions.html}core extensions}},
    
     * {{{/guides/mini/guide-maven-classloading.html}classloader hierarchy}} done by <<<ClassRealmManager>>> component
     ({{{./apidocs/org/apache/maven/classrealm/ClassRealmManager.html}javadoc}}),
     with its <<<DefaultClassRealmManager>>> implementation
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 14 05:48:39 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClasspathUtil.java

         *
         * If {@code stopAt} is not a parent of {@code startingClassloader}, this effectively collects all URLs from the classloader hierarchy.
         */
        public static void collectClasspathUntil(ClassLoader startingClassloader, ClassLoader stopAt, final Set<URL> classpath) {
            new ClassLoaderVisitor(stopAt) {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. pkg/util/procfs/procfs_linux.go

    // E.g. if the devices cgroup for the container is stored in /sys/fs/cgroup/devices/docker/nginx,
    // return docker/nginx. Assumes that the process is part of exactly one cgroup hierarchy.
    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    	filePath := path.Join("/proc", strconv.Itoa(pid), "cgroup")
    	content, err := os.ReadFile(filePath)
    	if err != nil {
    		if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

    import java.util.concurrent.atomic.AtomicBoolean;
    
    /**
     * Directory walker that supports a single Ant-style include pattern
     * and an optional exclude spec. Efficient in the sense that it will only
     * exhaustively scan a directory hierarchy if, and from the point where,
     * a '**' pattern is encountered.
     */
    public class SingleIncludePatternFileTree implements MinimalFileTree, LocalFileTree, DirectoryTree {
        private final File baseDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/kubelet/cm/types.go

    	GetPodContainerName(*v1.Pod) (CgroupName, string)
    
    	// EnsureExists takes a pod as argument and makes sure that
    	// pod cgroup exists if qos cgroup hierarchy flag is enabled.
    	// If the pod cgroup doesn't already exist this method creates it.
    	EnsureExists(*v1.Pod) error
    
    	// Exists returns true if the pod cgroup exists.
    	Exists(*v1.Pod) bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top