Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for Subject (0.34 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    import org.hamcrest.Factory; import org.hamcrest.Matcher; /** * Is the value the same object as another value? */ public class IsSame<T> extends BaseMatcher<T> { private final T object; public IsSame(T object) { this.object = object; } @Override public boolean matches(Object arg) { return arg == object; } @Override public void describeTo(Description description) { description.appendText("sameInstance(") .appendValue(object) .appendText(")"); } /** * Creates a matcher that matches only when the examined...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  2. 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)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

            this.basedir = basedir;
        }
    
        @Override
        public Object evaluate(String expr) throws ExpressionEvaluationException {
            return evaluate(expr, null);
        }
    
        @Override
        @SuppressWarnings("checkstyle:methodlength")
        public Object evaluate(String expr, Class<?> type) throws ExpressionEvaluationException {
            Object value = null;
    
            if (expr == null) {
                return null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         */
        private Object parseArray(final MXParser parser, final TypeLiteral<?> toType) throws Exception {
            // convert to a collection first then convert that into an array
            final Collection<?> collection = parseCollection(parser, toType);
            final Object array = Array.newInstance(toType.getRawType(), collection.size());
    
            int i = 0;
            for (final Object element : collection) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    org/apache/maven/plugin/AbstractMojoExecutio.class package org.apache.maven.plugin; public abstract synchronized class AbstractMojoExecutio extends Exception { protected Object source; protected String longMessage; public void AbstractMojoExecutio(String); public void AbstractMojoExecutio(String, Throwable); public String getLongMessage(); public Object getSource(); } org/apache/maven/plugin/ContextEnabled.class package org.apache.maven.plugin; public abstract interface ContextEnabled { public abstract void ...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

            this("", "", name, value, attributes, children, location);
        }
    
        public XmlNodeImpl(
                String prefix,
                String namespaceUri,
                String name,
                String value,
                Map<String, String> attributes,
                List<XmlNode> children,
                Object location) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. src/mdo/writer-stax.vm

        } //-- void setStringFormatter(InputLocation.StringFormatter)
    
    #end
        /**
         * Method write.
         *
         * @param writer a writer object
         * @param ${rootLcapName} a ${root.name} object
         * @throws IOException IOException if any
         */
        public void write(Writer writer, ${root.name} ${rootLcapName}) throws IOException, XMLStreamException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  8. src/mdo/java/ImmutableCollections.java

                throw uoe();
            }
    
            @Override
            public Object compute(Object key, BiFunction<? super Object, ? super Object, ?> remappingFunction) {
                throw uoe();
            }
    
            @Override
            public Object merge(Object key, Object value, BiFunction<? super Object, ? super Object, ?> remappingFunction) {
                throw uoe();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    String); } org/codehaus/plexus/classworlds/launcher/Configurator$1.class package org.codehaus.plexus.classworlds.launcher; synchronized class Configurator$1 implements java.util.Comparator { void Configurator$1(Configurator); public int compare(Object, Object); } org/codehaus/plexus/classworlds/launcher/Configurator$2.class package org.codehaus.plexus.classworlds.launcher; synchronized class Configurator$2 implements java.io.FilenameFilter { void Configurator$2(Configurator, String, String); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 41.6K bytes
    - Viewed (0)
  10. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    org/apache/maven/plugin/AbstractMojoExecutio.class package org.apache.maven.plugin; public abstract synchronized class AbstractMojoExecutio extends Exception { protected Object source; protected String longMessage; public void AbstractMojoExecutio(String); public void AbstractMojoExecutio(String, Throwable); public String getLongMessage(); public Object getSource(); } org/apache/maven/plugin/ContextEnabled.class package org.apache.maven.plugin; public abstract interface ContextEnabled { public abstract void ...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 9.9K bytes
    - Viewed (0)
Back to top