Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for modules (0.14 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

          BiMap<K, V> synchronizedBiMap(BiMap<K, V> bimap) {
        return Synchronized.biMap(bimap, null);
      }
    
      /**
       * Returns an unmodifiable view of the specified bimap. This method allows modules to provide
       * users with "read-only" access to internal bimaps. Query operations on the returned bimap "read
       * through" to the specified bimap, and attempts to modify the returned map, whether direct or via
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionDataRepositoryTest.java

            request.setResumeFrom(":module-b");
            Properties properties = new Properties();
            properties.setProperty("remainingProjects", ":module-a");
    
            repository.applyResumptionProperties(request, properties);
    
            assertThat(request.getResumeFrom(), is(":module-b"));
        }
    
        @Test
        void projectsFromPropertyGetsAddedToExistingRequestParameters() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

            @Override
            public void afterProjectsRead(MavenSession session) {
                injectReactorDependency(session.getProjects(), "module-a", "module-b");
            }
    
            private void injectReactorDependency(List<MavenProject> projects, String moduleFrom, String moduleTo) {
                for (MavenProject project : projects) {
                    if (moduleFrom.equals(project.getArtifactId())) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

                org.apache.maven.api.model.ActivationOS modelOs = modelActivation.getOs();
    
                if (modelOs != null) {
                    ActivationOS os = ActivationOS.newBuilder()
                            .arch(modelOs.getArch())
                            .family(modelOs.getFamily())
                            .name(modelOs.getName())
                            .version(modelOs.getVersion())
                            .build();
    
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/MissingModuleException.java

        private File moduleFile;
        private final String moduleName;
    
        public MissingModuleException(String moduleName, File moduleFile, File pomFile) {
            super("The module: " + moduleName + " cannot be found in file: " + moduleFile, pomFile);
            this.moduleName = moduleName;
            this.moduleFile = moduleFile;
        }
    
        public File getModuleFile() {
            return moduleFile;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                projects.add(project);
                if (includeModules) {
                    for (String module : project.getModules()) {
                        File modulePom = new File(pom.getParentFile(), module);
                        if (modulePom.isDirectory()) {
                            modulePom = new File(modulePom, "pom.xml");
                        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

      project
    - nice little sample projects that could be run in the core as well as integration tests
    
    All Possible Errors
    - invalid lifecycle phase (maybe same as bad CLI param, though you were talking about embedder too)
    - <module> specified is not found
    - malformed settings
    - malformed POM
    - local repository not writable
    - remote repositories not available
    - artifact metadata missing
    - extension metadata missing
    - extension artifact missing
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            project.getCompileClasspathElements();
        }
    
        @Test
        void testBuildFromModelSource() throws Exception {
            File pomFile = new File("src/test/resources/projects/modelsource/module01/pom.xml");
            MavenSession mavenSession = createMavenSession(pomFile);
            ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         *
         * @return the paths of all dependencies
         */
        @Nonnull
        List<Path> getPaths();
    
        /**
         * Returns the file paths of all dependencies, dispatched according the tool options where to place them.
         * The {@link PathType} keys identify, for example, {@code --class-path} or {@code --module-path} options.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java

            defaultDokkaVersion.set(dokkaVersionOverride.convention(defaultDokkaVersion.get()));
        }
    
        /**
         * The name of the module is part of the URI for deep links, changing it will break existing links.
         * The name of the module must match the first header of {@code kotlin/Module.md} file.
         */
        private static void renameModule(Project project) {
            getDokkatooExtension(project).getModuleName().set("gradle");
        }
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 15 14:00:14 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top