Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 258 for getModule (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenUniqueSnapshotComponentIdentifier.java

        }
    
        @Override
        public int hashCode() {
            return hashCode;
        }
    
        @Override
        public String getDisplayName() {
            return String.format("%s:%s:%s:%s", getGroup(), getModule(), getSnapshotVersion(), timestamp);
        }
    
        public String getTimestamp() {
            return timestamp;
        }
    
        public String getSnapshotVersion() {
            return getVersion().replace(timestamp, "SNAPSHOT");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 10:27:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtStandaloneProjectStructureProvider.kt

        override fun getNotUnderContentRootModule(project: Project): KtNotUnderContentRootModule {
            return ktNotUnderContentRootModuleWithoutPsiFile
        }
    
        @OptIn(KtModuleStructureInternals::class)
        override fun getModule(element: PsiElement, contextualModule: KtModule?): KtModule {
            val containingFile = element.containingFile
                ?: return ktNotUnderContentRootModuleWithoutPsiFile
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            }
            return runtimeClasspath;
        }
    
        private Set<Module> getModules(String[] projectNames) {
            Set<Module> modules = new LinkedHashSet<>();
            for (String project : projectNames) {
                modules.add(getModule(project));
            }
            return modules;
        }
    
        private String[] split(String value) {
            if (value == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/exceptions/ComponentVerificationException.java

            // Add our header first
            treeFormatter.node(
                String.format(
                    "An error happened while verifying '%s:%s:%s':",
                    component.getGroup(), component.getModule(), component.getVersion()
                )
            );
    
            if (this.causeErrorFormatter != null) {
                treeFormatter.startChildren();
                // Let the underlying exception explain the situation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 15:00:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataStore.java

            ModuleComponentIdentifier moduleComponentIdentifier = componentId.getComponentId();
            return new String[] {
                moduleComponentIdentifier.getGroup(),
                moduleComponentIdentifier.getModule(),
                moduleComponentIdentifier.getVersion(),
                componentId.getRepositoryId(),
                "descriptor.bin"
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginConfigurationIntegrationTest.groovy

                package test;
                public class Main {
                    public static void main(String[] args) {
                        System.out.println("Module: " + Main.class.getModule().getName());
                    }
                }
            """
            file("src/main/java/module-info.java") << "module test.main {}"
    
            buildFile << """
                plugins {
                    id("application")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftComponent.java

        /**
         * Defines the Swift module for this component. The default value is calculated from the project name.
         */
        Property<String> getModule();
    
        /**
         * Defines the source files or directories of this component. You can add files or directories to this collection. When a directory is added, all source files are included for compilation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractDependencyImpl.java

            return moduleIdentifier.getName();
        }
    
        @Override
        public VersionConstraint getVersionConstraint() {
            return this.versionConstraint;
        }
    
        @Override
        public ModuleIdentifier getModule() {
            return moduleIdentifier;
        }
    
        @Override
        public T version(Action<? super MutableVersionConstraint> configureAction) {
            configureAction.execute(versionConstraint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/filestore/DefaultArtifactIdentifierFileStore.java

            @Override
            public String determineGroup(ModuleComponentArtifactIdentifier artifactId) {
                return artifactId.getComponentIdentifier().getGroup() + '/' + artifactId.getComponentIdentifier().getModule() + '/' + artifactId.getComponentIdentifier().getVersion();
            }
    
            @Override
            public int getNumberOfGroupingDirs() {
                return NUMBER_OF_GROUPING_DIRS;
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/CorePluginResolver.java

                        + "Such plugins are versioned as part of Gradle. Please remove the version number from the declaration."
                );
            }
            if (pluginRequest.getModule() != null) {
                throw new InvalidPluginRequestException(pluginRequest,
                    getCorePluginClarification(pluginRequest) + "which cannot be specified with a custom implementation artifact. "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top