Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 369 for necessary (1.73 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/group/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing user groups in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing group entries,
     * including tracking information for optimistic locking and audit trails.
     * Groups are used to organize users and define access permissions.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing path mapping configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing path map entries,
     * including tracking information for optimistic locking and audit trails.
     * Path mappings are used to transform document URLs and paths during indexing and display.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing related content configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing related content entries,
     * including tracking information for optimistic locking and audit trails.
     * Related content configurations define relationships between documents for enhanced search results.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webauth/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing web authentication configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing web authentication entries,
     * including tracking information for optimistic locking and audit trails.
     * Web authentication configurations define credentials for accessing protected web resources during crawling.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  5. util/gradle_integration_tests.sh

    # We run this separately so that its change to the default toolchain doesn't affect anything else.
    # (And we run it after the main build so that that build has already downloaded Java 11 if necessary.)
    ./mvnw --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' initialize -P print-java-11-home
    export JAVA_HOME=$(<target/java_11_home)
    
    # Gradle Wrapper overwrites some files when it runs.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jan 02 19:24:12 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListTester.java

       */
      @Override
      protected void expectContents(Collection<E> expectedCollection) {
        List<E> expectedList = copyToList(expectedCollection);
        // Avoid expectEquals() here to delay reason manufacture until necessary.
        if (getList().size() != expectedList.size()) {
          fail("size mismatch: " + reportContext(expectedList));
        }
        for (int i = 0; i < expectedList.size(); i++) {
          E expected = expectedList.get(i);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/labeltype/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing label types in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing label type entries,
     * including tracking information for optimistic locking and audit trails.
     * Label types are used to categorize and filter documents in search results.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing user roles in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing role entries,
     * including tracking information for optimistic locking and audit trails.
     * Roles define permissions and access levels for users within the system.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/ParametricNullness.java

     *       identically to {@code Nullable}</a> as of version 0.9.9.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be
     *       necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault}
     *       annotations that {@code ParametricNullness} was counteracting.
     * </ul>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 16:20:21 UTC 2024
    - 3.1K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/primitives/ParametricNullness.java

     *       identically to {@code Nullable}</a> as of version 0.9.9.
     *   <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be
     *       necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault}
     *       annotations that {@code ParametricNullness} was counteracting.
     * </ul>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 16:20:21 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top