Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,086 for Herting (0.12 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            // Load data first
            protwordsFile.reload(null);
    
            // Test getting non-existing item
            OptionalEntity<ProtwordsItem> item = protwordsFile.get(999);
            assertFalse(item.isPresent());
        }
    
        public void test_get_withUnloadedData() {
            // Test getting item when data is not loaded yet
            OptionalEntity<ProtwordsItem> item = protwordsFile.get(1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - Update debian-base, debian-iptables, setcap images to pick up CVE fixes
      - Debian-base to v1.9.0
      - Debian-iptables to v1.6.7
      - setcap to v2.0.4 (#106143, @cpanato) [SIG Release and Testing]
    
    ### Failing Test
    
    - Fixes hostpath storage e2e tests within SELinux enabled env (#105786, @Elbehery) [SIG Testing]
    
    ### Bug or Regression
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. build.gradle.kts

          signatures = androidSignature + jvmSignature
          failWithoutSignatures = false
        }
      }
    
      dependencies {
        // No dependency requirements for testing-support.
        if (project.name == "okhttp-testing-support") return@dependencies
    
        // okhttp configured specifically.
        if (project.name == "okhttp") return@dependencies
    
        if (project.name == "mockwebserver3-junit5") {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. src/main/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>
    <setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
    <setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
    <setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
    <setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Sep 17 06:39:42 UTC 2017
    - 30.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            assertFalse(file.exists(), "Non-existent file should not exist");
            assertThrows(SmbException.class, () -> file.length(), "Getting length of non-existent file should throw exception");
            assertThrows(SmbException.class, () -> file.getInputStream(), "Getting input stream of non-existent file should throw exception");
        }
    
        @Test
        void testInvalidPath() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  6. src/test/java/jcifs/SmbResourceTest.java

                // Given
                int newAttributes = 0x01; // FILE_ATTRIBUTE_READONLY
    
                // When/Then
                assertDoesNotThrow(() -> mockResource.setAttributes(newAttributes), "Setting attributes should not throw exception");
                verify(mockResource).setAttributes(newAttributes);
            }
        }
    
        @Nested
        @DisplayName("File Time Tests")
        class FileTimeTests {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 35K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/WebApiUtil.java

     */
    package org.codelibs.fess.util;
    
    import org.codelibs.fess.exception.WebApiException;
    import org.lastaflute.web.util.LaRequestUtil;
    
    /**
     * Utility class for web API operations.
     * Provides functionality for setting and retrieving objects from request attributes,
     * error handling, and validation in web API context.
     */
    public final class WebApiUtil {
    
        /**
         * Request attribute key for storing web API exceptions.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java

     * session events and their originating operations in the application code. The trace structure
     * supports the following key features:
     *
     * <ul>
     *   <li>Maintains parent-child relationships between requests to track operation nesting</li>
     *   <li>Carries contextual data describing the current request or operation</li>
     *   <li>Supports both internal session operations and client-provided trace information</li>
     * </ul>
     *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * can be changed (See <a href="../../../resolver.html">Setting Name
     * Resolution Properties</a>). The servername and path components are
     * not case sensitive but the domain, username, and password components
     * are. It is also likely that properties must be specified for jcifs.smb1
     * to function (See <a href="../../overview-summary.html#scp">Setting
     * JCIFS Properties</a>). Here are some examples of SMB URLs with brief
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        public String failureCountThreshold;
    
        /** The popular word setting. */
        public String popularWord;
    
        /** The CSV file encoding setting. */
        public String csvFileEncoding;
    
        /** The purge search log day setting. */
        public String purgeSearchLogDay;
    
        /** The purge job log day setting. */
        public String purgeJobLogDay;
    
        /** The purge user info day setting. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top