Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 555 for scope_ (0.11 sec)

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

        }
    
        interface PhasePointer extends Pointer {
            default Type type() {
                return Type.PROJECT;
            }
        }
    
        interface DependenciesPointer extends Pointer {
            String scope(); // default: all
    
            default Type type() {
                return Type.DEPENDENCIES;
            }
        }
    
        interface ChildrenPointer extends Pointer {
            default Type type() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

      }
    
      /** If we don't keep a strong reference to the reference object, it won't be enqueued. */
      @Nullable FinalizableWeakReference<Object> reference;
    
      /** Create the FRQ in a method that goes out of scope so that we're sure it will be reclaimed. */
      private void weaklyReferenceQueue() {
        frq = new FinalizableReferenceQueue();
        queueReference = new WeakReference<>(frq.queue);
    
        /*
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/keymatch/admin_keymatch.jsp

                                            </table>
                                        </div>
                                    </div>
                                    <c:set var="pager" value="${keyMatchPager}" scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/relatedcontent/admin_relatedcontent.jsp

                                        </div>
                                    </div>
                                    <c:set var="pager" value="${relatedContentPager}"
                                           scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  5. code_of_conduct.md

    threatening, offensive, or harmful. However, these actions shall respect the
    licensing terms of the Project Developments that will always supersede such
    Code of Conduct.
    
    ## Scope
    
    This Code of Conduct applies both within project spaces and in public spaces
    when an individual is representing the project or its community. Examples of
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  6. helm/minio/templates/_helpers.tpl

    {{- end -}}
    
    {{/*
    Return the proper Docker Image Registry Secret Names
    */}}
    {{- define "minio.imagePullSecrets" -}}
    {{/*
    Helm 2.11 supports the assignment of a value to a variable defined in a different scope,
    but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else logic.
    Also, we can not use a single if because lazy evaluation is not an option
    */}}
    {{- if .Values.global }}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo.jsp

                                        </div>
                                    </div>
                                    <c:set var="pager" value="${crawlingInfoPager}"
                                           scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 11.4K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

                                        </div>
                                    </div>
                                    <c:set var="pager" value="${charMappingPager}"
                                           scope="request"/>
                                    <div class="row">
                                        <div class="col-sm-2">
                                            <la:message key="labels.pagination_page_guide_msg"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp

                                            </table>
                                        </div>
                                    </div>
                                    <c:set var="pager" value="${stopwordsPager}" scope="request"/>
                                    <div class="row">
                                        <div class="col-sm-2">
                                            <la:message key="labels.pagination_page_guide_msg"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

    import org.apache.maven.model.building.ModelProblem;
    import org.apache.maven.repository.RepositorySystem;
    import org.apache.maven.repository.internal.MavenRepositorySystemUtils;
    import org.apache.maven.session.scope.internal.SessionScope;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.junit.jupiter.api.BeforeEach;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top