Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for moduleDir (0.58 sec)

  1. 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)
  2. 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)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/IntegrationTestBuildContext.java

        }
    
        @Nullable
        private static TestFile optionalFile(String propertyName) {
            String path = System.getProperty(propertyName);
            // MODULE_WORKING_DIR doesn't seem to work correctly and MODULE_DIR seems to be in `.idea/modules/<path-to-subproject>`
            // See https://youtrack.jetbrains.com/issue/IDEA-194910
            return path != null ? new TestFile(new File(path.replace(".idea/modules/", ""))) : null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/jpms/ModuleJarFixture.groovy

        private enum JarKind {
            LIB,
            MODULE,
            AUTO_MODULE
        }
    
        static byte[] traditionalJar(String name) {
            jar(name, '', JarKind.LIB)
        }
    
        static byte[] moduleJar(String name, String moduleInfoStatements = '') {
            jar(name, moduleInfoStatements, JarKind.MODULE)
        }
    
        static byte[] autoModuleJar(String name, String moduleInfoStatements = '') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                                it instanceof org.gradle.api.artifacts.result.ResolvedDependencyResult &&
                                it.requested.matchesStrictly(moduleId("org.utils", "api", "2.0")) &&
                                it.selected.componentId == moduleId("org.utils", "api", "2.0") &&
                                !it.selected.selectionReason.forced &&
                                !it.selected.selectionReason.selectedByRule &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. docs/tr/docs/project-generation.md

        * Docker ile multi-stage yapı, böylece kodu derlemeniz, kaydetmeniz veya işlemeniz gerekmez.
        * Derleme zamanında Frontend testi (devre dışı bırakılabilir).
        * Mümkün olduğu kadar modüler yapılmıştır, bu nedenle kutudan çıktığı gibi çalışır, ancak Vue CLI ile yeniden oluşturabilir veya ihtiyaç duyduğunuz şekilde oluşturabilir ve istediğinizi yeniden kullanabilirsiniz.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			line, mod = line[:i], line[i+1:]
    		}
    		if i := bytes.Index(line, slashSlash); i >= 0 {
    			line = line[:i]
    		}
    		line = bytes.TrimSpace(line)
    		if !bytes.HasPrefix(line, moduleStr) {
    			continue
    		}
    		line = line[len(moduleStr):]
    		n := len(line)
    		line = bytes.TrimSpace(line)
    		if len(line) == n || len(line) == 0 {
    			continue
    		}
    
    		if line[0] == '"' || line[0] == '`' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        override fun onChangingModuleResolve(moduleId: ModuleComponentIdentifier, expiry: Expiry) {
            val expireAt = host.buildStartTime + expiry.keepFor.toMillis()
            onChangingValue(ConfigurationCacheFingerprint.ChangingModule(moduleId.displayName, expireAt))
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top