Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 489 for container_0 (0.09 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java

     */
    package org.apache.maven.repository.metadata;
    
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    
    import org.apache.maven.artifact.ArtifactScopeEnum;
    
    /**
     * classpath container that is aware of the classpath scope
     *
     *
     */
    @Deprecated
    public class ClasspathContainer implements Iterable<ArtifactMetadata> {
        private List<ArtifactMetadata> classpath;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth.jsp

            <jsp:param name="menuType" value="fileAuthentication"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.file_auth_configuration"/>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 27 06:24:23 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_details.jsp

            <jsp:param name="menuType" value="fileAuthentication"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.file_auth_title_details"/>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent_edit.jsp

            <jsp:param name="menuType" value="relatedContent"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.related_content_title_details"/>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/badword/admin_badword_upload.jsp

            <jsp:param name="menuType" value="badWord"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.bad_word_configuration"/>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping_download.jsp

            <jsp:param name="menuCategoryType" value="system"/>
            <jsp:param name="menuType" value="dict"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.dict_mapping_title"/>
                            </h1>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym_download.jsp

            <jsp:param name="menuCategoryType" value="system"/>
            <jsp:param name="menuType" value="dict"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.dict_synonym_title"/>
                            </h1>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  8. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *
     */
    public abstract class AbstractMojo implements Mojo, ContextEnabled {
        /** Instance logger */
        private Log log;
    
        /** Plugin container context */
        private Map pluginContext;
    
        /**
         * @deprecated Use SLF4J directly
         */
        @Deprecated
        @Override
        public void setLog(Log log) {
            this.log = log;
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Interface used to locate the root directory for a given project.
     *
     * The root locator is usually looked up from the plexus container.
     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

      // Needed to stop Eclipse whining
      private void resetWithHole() {
        List<E> container = new ArrayList<>();
        container.addAll(nCopies(a.getCount(), a.getElement()));
        container.addAll(nCopies(c.getCount(), c.getElement()));
        super.resetContainer(getSubjectGenerator().create(container.toArray()));
        sortedMultiset = (SortedMultiset<E>) getMultiset();
      }
    
      @CollectionSize.Require(ZERO)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top