Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 354 for Catching (0.39 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/RecordingEventListener.kt

              null -> return // no open event
              true -> return // found open event
              false -> return@loop // this is not the open event so continue
            }
          }
          fail<Any>("event $e without matching start event")
        }
      }
    
      override fun proxySelectStart(
        call: Call,
        url: HttpUrl,
      ) = logEvent(ProxySelectStart(System.nanoTime(), call, url))
    
      override fun proxySelectEnd(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

             * Returns true if "cache" is present in the values or if there's a single "true" value
             * for backward compatibility.
             *
             * @return true if caching is enabled, false otherwise
             */
            public boolean isCache() {
                for (final String value : values) {
                    if ("cache".equalsIgnoreCase(value)) {
                        return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. cmd/erasure-healing-common.go

    //
    // 2. __offline__            - err == errDiskNotFound
    //
    // 3. __availableWithParts__ - has the latest copy of xl.meta and has all
    //                             parts with checksums matching; returned by disksWithAllParts
    //
    // 4. __outdated__           - returned by outDatedDisk, provided []StorageAPI
    //                             returned by diskWithAllParts is passed for latestDisks.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 30 00:56:02 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            // Default constructor
        }
    
        /**
         * Gets a paginated list of bad words.
         * @param badWordPager The pager with search criteria and pagination settings.
         * @return List of bad words matching the criteria.
         */
        public List<BadWord> getBadWordList(final BadWordPager badWordPager) {
    
            final PagingResultBean<BadWord> badWordList = badWordBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  5. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java

     * </ul>
     *
     * <p>Children combination modes (specified by {@code combine.children} attribute):</p>
     * <ul>
     *   <li>{@code merge} (default): Merges elements with matching names</li>
     *   <li>{@code append}: Adds elements as siblings</li>
     * </ul>
     *
     * <p>Self combination modes (specified by {@code combine.self} attribute):</p>
     * <ul>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Milliseconds between 1970 and 1601 */
        long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L;
        /** Default timezone */
        TimeZone TZ = TimeZone.getDefault();
    
        /** Whether to use batching */
        boolean USE_BATCHING = Config.getBoolean("jcifs.smb1.smb.client.useBatching", true);
        /** OEM encoding */
        String OEM_ENCODING = Config.getProperty("jcifs.smb1.encoding", Config.DEFAULT_OEM_ENCODING);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. README.md

    - **Thread Safety**: Components support concurrent access
    - **DFS Support**: Distributed File System resolution
    - **Streaming Operations**: Efficient directory listings and file operations
    - **Buffer Caching**: Optimized buffer management
    - **DCE/RPC Protocol**: Support for advanced operations
    
    ## Quick Start
    
    ### Basic Usage
    
    ```java
    import jcifs.CIFSContext;
    import jcifs.context.SingletonContext;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. gradlew

    #         * compound commands having a testable exit status, especially «case»;
    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/transport/Transport.java

        /**
         * Map of pending requests to their corresponding responses.
         */
        protected HashMap response_map = new HashMap(4);
    
        /**
         * Creates a key for the specified request for response matching.
         *
         * @param request the request to create a key for
         * @throws IOException if an I/O error occurs
         */
        protected abstract void makeKey(Request request) throws IOException;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/DfsImpl.java

            }
    
            String p = "\\" + target + "\\" + root;
            if (path != null) {
                p += path;
            }
            try {
                if (log.isDebugEnabled()) {
                    log.debug("Fetching referral for " + p);
                }
                final DfsReferralData dr = trans.getDfsReferrals(tf, p, targetHost, targetDomain, 0);
                if (dr != null) {
    
                    if (log.isDebugEnabled()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
Back to top