Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 304 for s3object (0.5 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            ArtifactSpec e = b2.addDependency("e", "1.0");
            ArtifactSpec g = d1.addDependency("g", "1.0");
    
            ArtifactResolutionResult res = collect(createSet(new Object[] {a.artifact}));
            Object[] artifacts = new Object[] {a.artifact, c.artifact, d1.artifact, b2.artifact, e.artifact, g.artifact};
            assertEquals(createSet(artifacts), res.getArtifacts(), "Check artifact list");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  2. src/mdo/java/InputLocation.java

            if (source == null) {
                return target;
            } else if (target == null) {
                return source;
            }
    
            Map<Object, InputLocation> locations;
            Map<Object, InputLocation> sourceLocations = source.locations;
            Map<Object, InputLocation> targetLocations = target.locations;
            if (sourceLocations == null) {
                locations = targetLocations;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    FastMap _keysMap; private final int _mask; private final Object[] _keys; private final Object[] _values; public void CachedMap(); public void CachedMap(int); public void CachedMap(int, java.util.Map); public int getCacheSize(); public java.util.Map getBackingMap(); public void flush(); public Object get(Object); private Object getCacheMissed(Object, int); public Object put(Object, Object); public Object remove(Object); public boolean containsKey(Object); public int size(); public boolean isEmpty(); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultLifecycleBindingsInjector.java

                    Map<Object, Object> context) {
                List<Plugin> src = source.getPlugins();
                if (!src.isEmpty()) {
                    List<Plugin> tgt = target.getPlugins();
    
                    Map<Object, Plugin> merged = new LinkedHashMap<>((src.size() + tgt.size()) * 2);
    
                    for (Plugin element : tgt) {
                        Object key = getPluginKey().apply(element);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodePointer.java

                }
            }
            return 0;
        }
    
        @Override
        public Object getValue() {
            return getValue(node);
        }
    
        private static Object getValue(XmlNode node) {
            if (node.getValue() != null) {
                return node.getValue();
            } else {
                List<Object> children = new ArrayList<>();
                for (XmlNode child : node.getChildren()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java

            } catch (XMLStreamException e) {
                throw new XmlPullParserException(e.getMessage(), null, e);
            }
        }
    
        /**
         *
         * @param reader a reader object.
         * @param strict a strict object.
         * @throws IOException IOException if any.
         * @throws XmlPullParserException XmlPullParserException if
         * any.
         * @return Model
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelWriter.java

                write(out, options, model);
            }
        }
    
        @Override
        public void write(File output, Map<String, Object> options, org.apache.maven.model.Model model) throws IOException {
            write(output, options, model.getDelegate());
        }
    
        @Override
        public void write(Writer output, Map<String, Object> options, org.apache.maven.model.Model model)
                throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Writer.java

                            }
                            : null);
        } // -- void setStringFormatter( InputLocation.StringFormatter )
    
        /**
         * Method write.
         *
         * @param writer a writer object.
         * @param model a model object.
         * @throws IOException java.io.IOException if any.
         */
        public void write(Writer writer, Model model) throws IOException {
            try {
                delegate.write(writer, model.getDelegate());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/settings/MavenSettingsBuilder.java

        /**
         * @return a <code>Settings</code> object from the user settings file.
         * @throws IOException if any
         * @throws XmlPullParserException if any
         */
        Settings buildSettings() throws IOException, XmlPullParserException;
    
        /**
         * @param useCachedSettings if true, doesn't reload the user settings
         * @return a <code>Settings</code> object from the user settings file.
         * @throws IOException if any
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            }
    
            return PACKAGE_AND_PARENT
                    .matcher(ARRAY_SIGNATURE.matcher(typeName).replaceAll("$1[]"))
                    .replaceAll("");
        }
    
        public static @Nullable Object getOuterClassInstance(Object innerClassInstance) {
            if (innerClassInstance == null) {
                return null;
            }
            Class<?> cls = innerClassInstance.getClass();
            Class<?> enclosingClass = cls.getEnclosingClass();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top