Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 193 for Zstandard (0.1 sec)

  1. android/guava/src/com/google/common/base/Utf8.java

    /**
     * Low-level, high-performance utility methods related to the {@linkplain Charsets#UTF_8 UTF-8}
     * character encoding. UTF-8 is defined in section D92 of <a
     * href="http://www.unicode.org/versions/Unicode6.2.0/ch03.pdf">The Unicode Standard Core
     * Specification, Chapter 3</a>.
     *
     * <p>The variant of UTF-8 implemented by this class is the restricted definition of UTF-8
     * introduced in Unicode 3.1. One implication of this is that it rejects <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

             * @return the parsed Query object
             */
            Query parse(final String query);
        }
    
        /**
         * Custom Lucene query parser that extends the standard QueryParser
         * to provide additional functionality for quoted queries.
         */
        protected static class LuceneQueryParser extends org.apache.lucene.queryparser.classic.QueryParser {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java

     * implement subtleties of the API improperly.
     *
     * <p><b>Custom implementation</b>: Avoid implementing {@code ListenableFuture} from scratch. If you
     * can't get by with the standard implementations, prefer to derive a new {@code Future} instance
     * with the methods in {@link Futures} or, if necessary, to extend {@link AbstractFuture}.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * implement subtleties of the API improperly.
     *
     * <p><b>Custom implementation</b>: Avoid implementing {@code ListenableFuture} from scratch. If you
     * can't get by with the standard implementations, prefer to derive a new {@code Future} instance
     * with the methods in {@link Futures} or, if necessary, to extend {@link AbstractFuture}.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/PropertyConfiguration.java

        }
    
        /**
         * Initialize configuration from properties
         */
        private void initFromProperties(Properties props) {
            String value;
    
            // Standard jCIFS properties
            value = props.getProperty("jcifs.smb.client.username");
            if (value != null) {
                this.defaultUserName = value;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/util/transport/TransportExceptionTest.java

            void testIOExceptionBehavior() {
                String message = "IO operation failed";
                TransportException exception = new TransportException(message);
    
                // Test standard IOException methods
                assertEquals(message, exception.getMessage());
                assertNotNull(exception.getStackTrace());
                assertTrue(exception.getStackTrace().length > 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/UrlEscapers.java

       * </ul>
       *
       * <p>This escaper is suitable for escaping parameter names and values even when <a
       * href="https://www.w3.org/TR/html401/appendix/notes.html#h-B.2.2">using the non-standard
       * semicolon</a>, rather than the ampersand, as a parameter delimiter. Nevertheless, we recommend
       * using the ampersand unless you must interoperate with systems that require semicolons.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ACE.java

         */
        int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /**
         * Permission to write file attributes
         */
        int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /**
         * Standard delete permission
         */
        int DELETE = 0x00010000; // 16
        /**
         * Permission to read the security descriptor
         */
        int READ_CONTROL = 0x00020000; // 17
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/witness/WitnessClient.java

                    break;
                }
    
                log.info("Processing async notification: {} for {}", eventType, notification.getResourceName());
    
                // Process the notification through the standard path
                processNotification(notification);
    
            } catch (Exception e) {
                log.error("Error processing async notification message", e);
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/http/NtlmHttpFilterTest.java

            verify(response).setHeader("WWW-Authenticate", "NTLM");
            verify(response, never()).addHeader(eq("WWW-Authenticate"), anyString());
        }
    
        // Helper method to initialize filter with standard configuration
        private void initializeFilter() throws ServletException {
            Map<String, String> initParams = new HashMap<>();
            initParams.put("jcifs.smb.client.domain", "TEST_DOMAIN");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top