Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for moduleDir (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                ModuleComponentSelector requested = dependency.getSelector();
                final ModuleIdentifier moduleId = requested.getModuleIdentifier();
                ModuleVersionsCache.CachedModuleVersionList cachedModuleVersionList = moduleVersionsCache.getCachedModuleResolution(delegate, moduleId);
                if (cachedModuleVersionList != null) {
                    Set<String> versionList = cachedModuleVersionList.getModuleVersions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

                return Collections.emptySet();
            }
    
            ModuleComponentIdentifier moduleId = (ModuleComponentIdentifier) module.getId();
            IvyArtifactName ivyArtifactName = new DefaultIvyArtifactName(moduleId.getModule(), type, "jar", classifier);
    
            ModuleComponentArtifactMetadata artifact = new DefaultModuleComponentArtifactMetadata(moduleId, ivyArtifactName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

            for (RenderableDependency childDependency : dependency.getChildren()) {
                ModuleIdentifier moduleId = getModuleIdentifier(childDependency);
                if (moduleId == null) {
                    continue;
                }
                modules.add(moduleId);
                boolean alreadyVisited = !visited.add((ComponentIdentifier) childDependency.getId());
                if (!alreadyVisited) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

                ModuleComponentIdentifier moduleId = (ModuleComponentIdentifier) artifact.getId().getComponentIdentifier();
                SingleEntryModuleLibrary library = new SingleEntryModuleLibrary(toPath(ideaModule, artifact.getFile()), scope);
                library.setModuleVersion(DefaultModuleVersionIdentifier.newId(moduleId.getModuleIdentifier(), moduleId.getVersion()));
                Set<Path> sourcePaths = new LinkedHashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                } else {
                    // we need to make sure the variants we consider provide the implicit capability
                    result = containsImplicitCapability(capabilities, moduleId.getGroup(), moduleId.getName());
                }
                if (result.matches) {
                    if (lenient || result == MatchResult.EXACT_MATCH) {
                        builder.add(variant);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

        }
    
        public T selectBest(ModuleIdentifier moduleId, ModuleSelectors<? extends ResolvableSelectorState> selectors) {
            VersionSelector allRejects = createAllRejects(selectors);
            List<T> candidates = resolveSelectors(selectors, allRejects);
            assert !candidates.isEmpty();
    
            // If the module matches, add the root component into the mix
            if (moduleId.equals(rootModuleId) && !candidates.contains(rootComponent)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

                return nothing();
            }
            Map<UnionOf, List<ExcludeSpec>> byType = flattened.result.stream().collect(Collectors.groupingBy(UnionOf::typeOf));
            List<ModuleIdExclude> moduleIdExcludes = UnionOf.MODULEID.fromMap(byType);
            List<ModuleIdSetExclude> moduleIdSetsExcludes = UnionOf.MODULEID_SET.fromMap(byType);
            List<GroupExclude> groupExcludes = UnionOf.GROUP.fromMap(byType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            expect:
            def config = state.getConfiguration("child").metadata
            def excludes = config.excludes
            config.excludes*.moduleId.group == ["group2", "group1"]
            config.excludes*.moduleId.name == ["module2", "module1"]
            config.excludes.is(excludes)
        }
    
        def artifactName() {
            return new DefaultIvyArtifactName("artifact", "type", "ext")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersections.java

                super(GroupExclude.class, ModuleExclude.class);
            }
    
            @Override
            public ExcludeSpec doIntersect(GroupExclude left, ModuleExclude right, ExcludeFactory factory) {
                return factory.moduleId(DefaultModuleIdentifier.newId(left.getGroup(), right.getModule()));
            }
        }
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/folderThatWasExcludedEarlier"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    </module>'''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top