Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 243 for setModule (0.19 sec)

  1. 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)
  2. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftApplication.java

            SwiftExecutable result = objectFactory.newInstance(DefaultSwiftExecutable.class, getNames().append(identity.getName()), getModule(), testable, getSwiftSource(), getImplementationDependencies(), targetPlatform, toolChain, platformToolProvider, identity);
            getBinaries().add(result);
            return result;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleVersionSelector.java

         * as {@link #getGroup()} and {@link #getName()}.
         *
         * @return the module identifier
         *
         * @since 4.9
         */
        ModuleIdentifier getModule();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/DefaultIvyDependency.java

            this.excludeRules = excludeRules;
            this.artifacts = artifacts;
        }
    
        @Override
        public String getOrganisation() {
            return organisation;
        }
    
        @Override
        public String getModule() {
            return module;
        }
    
        @Override
        public String getRevision() {
            return revision;
        }
    
        @Nullable
        @Override
        public String getRevConstraint() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptTemplateModelBuilder.kt

            project.serviceOf<ModuleRegistry>().run {
                StandardKotlinBuildScriptTemplateModel(
                    gradleModules
                        .map { getModule(it) }
                        .flatMap { it.allRequiredModules }
                        .fold(ClassPath.EMPTY) { classPath, module -> classPath + module.classpath }
                        .asFiles
                )
            }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/management/internal/DefaultPluginResolveDetails.java

                targetPluginRequest.getOrigin(),
                targetPluginRequest.getScriptDisplayName(),
                targetPluginRequest.getLineNumber(),
                version,
                targetPluginRequest.getModule(),
                targetPluginRequest,
                targetPluginRequest.getAlternativeCoordinates().orElse(null)
            );
        }
    
        @Override
        public PluginRequestInternal getTarget() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/IvyDependency.java

    public interface IvyDependency {
        /**
         * The organisation value for this dependency.
         */
        String getOrganisation();
    
        /**
         * The module value for this dependency.
         */
        String getModule();
    
        /**
         * The revision value for this dependency.
         */
        String getRevision();
    
        /**
         * The configuration mapping for this dependency. This is mapped to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top