Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for bundling (0.05 sec)

  1. README.md

    - **I/O Operations** (`org.codelibs.core.io`) - File handling, resource management, stream utilities, and traversal utilities for efficient resource processing
    - **Reflection** (`org.codelibs.core.lang`) - Class loading, method/field access, type introspection utilities, and generics support
    - **Exception Handling** (`org.codelibs.core.exception`) - Runtime exception wrappers for common checked exceptions with consistent error handling
    
    ### Modern Java 21 Support
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/http/ThreadInterruptTest.kt

            override fun onResponse(
              call: Call,
              response: Response,
            ) {
            }
          },
        )
    
        // This should fail the Call, but not cause an unhandled Exception bubbling up
        client.dispatcher.executorService.shutdownNow()
    
        val exception = callFailure.get(5, TimeUnit.SECONDS)
        assertThat(exception.message).isEqualTo("canceled due to java.lang.InterruptedException")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            } catch (final ClassNotFoundException e) {
                fail("ProcessDestroyer inner class should exist");
            }
        }
    
        // Test exception handling scenarios
        public void test_exception_handling_scenarios() throws Exception {
            // Test various exception scenarios without triggering component dependencies
    
            // Test with null command list
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  4. android/pom.xml

      <packaging>pom</packaging>
      <name>Guava Maven Parent</name>
      <description>Parent for guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <properties>
        <!--
        When building Guava, you can pass (e.g.) `-Dsurefire.toolchain.version=21` to change which version to run tests under.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  5. pom.xml

      <packaging>pom</packaging>
      <name>Guava Maven Parent</name>
      <description>Parent for guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <properties>
        <!--
        When building Guava, you can pass (e.g.) `-Dsurefire.toolchain.version=21` to change which version to run tests under.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  6. guava-gwt/pom.xml

          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <classifier>gwt</classifier>
          <scope>test</scope>
          <exclusions>
            <exclusion>
              <!-- use the guava we're building. -->
              <groupId>com.google.guava</groupId>
              <artifactId>guava</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

    import jakarta.annotation.PostConstruct;
    import jakarta.annotation.PreDestroy;
    
    /**
     * Helper class for system-level operations and utilities.
     * This class provides methods for managing system properties, handling JSP files,
     * normalizing configurations, and other system-related tasks.
     */
    public class SystemHelper {
    
        /**
         * Constructs a new system helper.
         */
        public SystemHelper() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  8. docs/recipes.md

              System.out.println("Response 2 succeeded: " + response);
            } catch (IOException e) {
              System.out.println("Response 2 failed: " + e);
            }
          }
        ```
    
    ### Handling authentication ([.kt][AuthenticateKotlin], [.java][AuthenticateJava])
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

             * @return true if the condition was successfully built, false otherwise
             */
            boolean build(B requestBuilder);
        }
    
        /**
         * Interface for building search results from response data.
         *
         * @param <T> the result type
         * @param <B> the request builder type
         * @param <R> the response type
         */
        public interface SearchResult<T, B, R> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top