Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for key2 (0.13 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml

                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
                    <property>
                      <name>key2</name>
                      <value>value2</value>
                    </property>
                  </propertiesParam>
                </configuration>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml

                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
                    <property>
                      <name>key2</name>
                      <value>value2</value>
                    </property>
                  </propertiesParam>
                </configuration>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectRealmCache.java

            }
        }
    
        protected final Map<Key, CacheRecord> cache = new ConcurrentHashMap<>();
    
        @Override
        public Key createKey(List<? extends ClassRealm> extensionRealms) {
            return new CacheKey(extensionRealms);
        }
    
        public CacheRecord get(Key key) {
            return cache.get(key);
        }
    
        public CacheRecord put(Key key, ClassRealm projectRealm, DependencyFilter extensionArtifactFilter) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

        }
    
        public CacheRecord get(Key key) {
            return cache.get(key);
        }
    
        @Override
        public CacheRecord get(Key key, PluginRealmSupplier supplier)
                throws PluginResolutionException, PluginContainerException {
            try {
                return cache.computeIfAbsent(key, k -> {
                    try {
                        return supplier.load();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCache.java

            Key key = new CacheKey(
                    project,
                    project.getRemoteProjectRepositories(),
                    scopesToCollect,
                    scopesToResolve,
                    aggregating,
                    session);
            return keys.computeIfAbsent(key, k -> k);
        }
    
        @Override
        public CacheRecord get(Key key) throws LifecycleExecutionException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  6. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

         */
        String ID_COMBINATION_MODE_ATTRIBUTE = "combine.id";
    
        /**
         * In case of complex XML structures, combining can be done based on keys.
         * This is a comma separated list of attribute names.
         */
        String KEYS_COMBINATION_MODE_ATTRIBUTE = "combine.keys";
    
        /**
         * This default mode for combining a DOM node during merge means that where element names match, the process will
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Nov 27 23:11:34 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

        private final int rank;
    
        private final String key;
    
        private static Map<String, ArtifactStatus> map;
    
        private ArtifactStatus(String key, int rank) {
            this.rank = rank;
            this.key = key;
    
            if (map == null) {
                map = new HashMap<>();
            }
            map.put(key, this);
        }
    
        public static ArtifactStatus valueOf(String status) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCacheTest.java

        void setUp() throws Exception {
            cache = new DefaultProjectArtifactsCache();
        }
    
        @Test
        void testProjectDependencyOrder() throws Exception {
            ProjectArtifactsCache.Key project1 = new ProjectArtifactsCache.Key() {};
    
            Set<Artifact> artifacts = new LinkedHashSet<>(4);
            artifacts.add(new DefaultArtifact("g", "a1", "v", "compile", "jar", "", null));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

            } else {
                if (anew) {
                    cache = new ConcurrentHashMap<>();
                    repositoryCache.put(session, KEY, cache);
                } else {
                    cache = (ConcurrentHashMap<Object, Supplier<?>>)
                            repositoryCache.computeIfAbsent(session, KEY, ConcurrentHashMap::new);
                }
                return new DefaultModelCache(cache);
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java

            for (int i = 0; i < projects.size(); i++) {
                MavenProject project = projects.get(i);
                String key = BuilderCommon.getKey(project);
    
                this.getProjects().put(key, project);
                this.getIndices().put(key, i);
            }
        }
    
        public Map<String, MavenProject> getProjects() {
            return projects;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2K bytes
    - Viewed (0)
Back to top