Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 272 for getModule (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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