Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,551 for languages (0.17 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

    @Experimental
    @Immutable
    @SuppressWarnings("checkstyle:InterfaceIsType")
    public interface Language extends ExtensibleEnum {
    
        /**
         * The "none" language. It is not versioned, family is same to itself, and compatible with itself only.
         * In turn, every {@link Language} implementation must be compatible with {@code NONE} language.
         */
        Language NONE = language("none");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

        @Named
        @Singleton
        public static class DefaultLanguageRegistry extends DefaultExtensibleEnumRegistry<Language, LanguageProvider>
                implements LanguageRegistry {
    
            @Inject
            public DefaultLanguageRegistry(List<LanguageProvider> providers) {
                super(providers, Language.NONE, Language.JAVA_FAMILY);
            }
        }
    
        public abstract static class DefaultExtensibleEnumRegistry<
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    EncoderException; } org/apache/commons/codec/EncoderException.class package org.apache.commons.codec; public synchronized class EncoderException extends Exception { public void EncoderException(String); } org/apache/commons/codec/language/Metaphone.class package org.apache.commons.codec.language; public synchronized class Metaphone implements org.apache.commons.codec.StringEncoder { private String vowels; private String frontv; private String varson; private int maxCodeLen; public void Metaphone(); public String...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Aug 09 19:02:31 GMT 2004
    - 18.4K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

                    assertEquals(handler.getClassifier(), classifier, type + " classifier");
                    assertEquals(handler.getLanguage(), language, type + " language");
                    assertEquals(
                            handler.isAddedToClasspath() ? "true" : null, addedToClasspath, type + " addedToClasspath");
                    assertEquals(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/types/RarTypeProvider.java

     * software distributed under the License is distributed on an
     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl.types;
    
    import javax.inject.Named;
    import javax.inject.Provider;
    import javax.inject.Singleton;
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/types/MavenPluginTypeProvider.java

     * software distributed under the License is distributed on an
     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal.impl.types;
    
    import javax.inject.Named;
    import javax.inject.Provider;
    import javax.inject.Singleton;
    
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  7. maven-core/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import org.apache.maven.plugin.AbstractMojo; /** * Does nothing. * * @goal java * @phase generate-sources * * @author Benjamin Bentmann */ public class AMojo extends AbstractMojo { /**...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 13.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * @see #getArtifacts()
         */
        @Nonnull
        Packaging getPackaging();
    
        /**
         * Returns the project language. It is by default determined by {@link #getPackaging()}.
         *
         * @see #getPackaging()
         */
        @Nonnull
        default Language getLanguage() {
            return getPackaging().language();
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  9. maven-compat/src/test/resources/org/apache/maven/artifact/deployer/ArtifactDeployerTest.xml

    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <plexus>
      <components>
      </components>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 27 22:09:10 GMT 2010
    - 817 bytes
    - Viewed (0)
  10. maven-api-impl/src/test/resources/settings-simple.xml

    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <localRepository>${user.home}/.m2/repository</localRepository>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 895 bytes
    - Viewed (0)
Back to top