Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for hierarchyOf (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

            def toConfig1 = configuration(toComponent, "to-1")
            def toConfig2 = configuration(toComponent, "to-2")
            fromConfig.hierarchy >> ImmutableSet.of("from")
            fromConfig2.hierarchy >> ImmutableSet.of("child", "from")
            fromConfig3.hierarchy >> ImmutableSet.of("other")
    
            Multimap<String, String>  configMapping = LinkedHashMultimap.create()
            configMapping.put("*", "to-2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            this.attribute = key;
            this.value = value;
            Map<Attribute<?>, DefaultImmutableAttributes> hierarchy = new LinkedHashMap<>();
            hierarchy.putAll(parent.hierarchy);
            hierarchy.put(attribute, this);
            this.hierarchy = ImmutableMap.copyOf(hierarchy);
            Map<String, DefaultImmutableAttributes> hierarchyByName = new LinkedHashMap<>();
            hierarchyByName.putAll(parent.hierarchyByName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *
         * @see #getModuleNames()
         */
        private final Map<Path, String> descriptors;
    
        /**
         * Whether module hierarchy was detected. If false, then package hierarchy is assumed.
         * In a package hierarchy, the {@linkplain #descriptors} map has either zero or one entry.
         * In a module hierarchy, the descriptors map may have an arbitrary number of entries,
         * including one (so the map size cannot be used as a criterion).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyConfigurationHelper.java

        }
    
        ImmutableList<ModuleComponentArtifactMetadata> filterArtifacts(String name, Collection<String> hierarchy) {
            Set<ModuleComponentArtifactMetadata> artifacts = new LinkedHashSet<>();
            collectArtifactsFor(name, artifacts);
            for (String parent : hierarchy) {
                collectArtifactsFor(parent, artifacts);
            }
            return ImmutableList.copyOf(artifacts);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/podcgroupns.go

    		}
    		return r
    	}, uid))
    }
    
    // Cgroup represents a linux cgroup.
    type Cgroup struct {
    	HierarchyID    string
    	ControllerList string
    	GroupPath      string
    }
    
    // GetCGroups returns a slice of cgroups for pid using fs for filesystem calls.
    //
    // The expected cgroup format is "hierarchy-ID:controller-list:cgroup-path", and
    // this function will return an error if every cgroup does not meet that format.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableMavenModuleResolveMetadataTest.groovy

            immutable.getConfiguration("compile").hierarchy as List == ["compile"]
            immutable.getConfiguration("runtime").hierarchy as List == ["runtime", "compile"]
            immutable.getConfiguration("master").hierarchy as List == ["master"]
            immutable.getConfiguration("test").hierarchy as List == ["test", "runtime", "compile"]
            immutable.getConfiguration("default").hierarchy as List == ["default", "runtime", "compile", "master"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                }
            });
    
            // Collect all dependencies and excludes in hierarchy.
            // After running the dependency actions and preventing from mutation above, we know the
            // hierarchy will not change anymore and all configurations in the hierarchy
            // will no longer be mutated.
            ImmutableSet<String> hierarchy = Configurations.getNames(configuration.getHierarchy());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

    /**
     * Searches an ObjectOrigin receiver hierarchy to find the parent software type or throws an error if a software type
     * is not in the hierarchy.
     */
    private
    fun getSoftwareType(objectOrigin: ObjectOrigin): ObjectOrigin.AccessAndConfigureReceiver =
        findSoftwareType(objectOrigin) ?: error("Could not discover softwareType for $objectOrigin")
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalConfigurationMetadata.java

        ) {
            this.name = name;
            this.description = description;
            this.componentId = componentId;
            this.visible = visible;
            this.transitive = transitive;
            this.hierarchy = ImmutableSet.copyOf(hierarchy);
            this.attributes = attributes;
            this.capabilities = capabilities;
            this.canBeConsumed = canBeConsumed;
            this.deprecatedForConsumption = deprecatedForConsumption;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            0 * _
        }
    
        def "watchers are stopped when watched hierarchy is moved"() {
            def sourceDir = file("to-be-moved").createDir()
            def targetDir = file("target").createDir()
            def notMovedDir = file("normal").createDir()
            _ * probeRegistry.getProbeDirectory(_) >> { File hierarchy -> new File(hierarchy, ".gradle") }
    
            def watchableHierarchies = [sourceDir, notMovedDir]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top