Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for moduleDir (0.24 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.iml.xml

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/dynamicversions/ModuleAtRepositoryKey.java

    import org.gradle.api.artifacts.ModuleIdentifier;
    
    class ModuleAtRepositoryKey {
        final String repositoryId;
        final ModuleIdentifier moduleId;
    
        ModuleAtRepositoryKey(String repositoryId, ModuleIdentifier moduleId) {
            this.repositoryId = repositoryId;
            this.moduleId = moduleId;
        }
    
        @Override
        public boolean equals(Object o) {
            if (!(o instanceof ModuleAtRepositoryKey)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultModuleDependencySpec.java

               }
           }
    
           private void setValuesFromModuleId(String moduleId) {
               String[] components = moduleId.split(":");
               if (components.length < 2 || components.length > 3 || isNullOrEmpty(components[0]) || isNullOrEmpty(components[1])) {
                   throw illegalNotation(moduleId);
               }
               group(components[0]).module(components[1]);
               if (components.length > 2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultIvyPatternMatcherExcludeRuleSpec.java

            this.moduleId = moduleId;
            this.ivyArtifactName = artifact;
            this.matcher = PatternMatchers.getInstance().getMatcher(matcher);
            isArtifactExclude = ivyArtifactName != null;
            hashCode = Objects.hashCode(moduleId, ivyArtifactName, matcher, isArtifactExclude);
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/dynamicversions/AbstractModuleVersionsCache.java

        }
    
        @Override
        public void cacheModuleVersionList(ModuleComponentRepository<?> repository, ModuleIdentifier moduleId, Set<String> listedVersions) {
            LOGGER.debug("Caching version list in module versions cache: Using '{}' for '{}'", listedVersions, moduleId);
            ModuleAtRepositoryKey key = createKey(repository, moduleId);
            ModuleVersionsCacheEntry entry = createEntry(listedVersions);
            store(key, entry);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeFactory.java

        ModuleExclude module(String module);
    
        ModuleIdExclude moduleId(ModuleIdentifier id);
    
        ExcludeSpec anyOf(ExcludeSpec one, ExcludeSpec two);
    
        ExcludeSpec allOf(ExcludeSpec one, ExcludeSpec two);
    
        ExcludeSpec anyOf(Set<ExcludeSpec> specs);
    
        ExcludeSpec allOf(Set<ExcludeSpec> specs);
    
        ExcludeSpec ivyPatternExclude(ModuleIdentifier moduleId, IvyArtifactName artifact, String matcher);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 17:19:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/descriptor/DefaultExclude.java

        }
    
        @Override
        public String toString() {
            return "{exclude moduleId: " + moduleId + ", artifact: " + artifact + "}";
        }
    
        @Override
        public ModuleIdentifier getModuleId() {
            return moduleId;
        }
    
        @Override
        public IvyArtifactName getArtifact() {
            return artifact;
        }
    
        @Override
        public Set<String> getConfigurations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.iml.xml

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoTransform.java

                try (JarOutputStream outputStream = new JarOutputStream(new FileOutputStream(moduleJar), inputStream.getManifest())) {
                    copyEntries(inputStream, outputStream);
                }
            } catch (IOException e) {
                throw new RuntimeException(e);
            }
        }
    
        private static void addModuleDescriptor(File originalJar, File moduleJar, ModuleInfo moduleInfo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webservice/webservice.iml.xml

        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false"/>
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
        <orderEntry type="module" module-name="api"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top