Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Round (0.09 sec)

  1. src/main/java/jcifs/smb1/util/DES.java

            work   = (leftt ^ right) & 0xaaaaaaaa;
            leftt ^= work;
            right ^= work;
            leftt  = (leftt << 1) | ((leftt >>> 31) & 1);
    
            for ( round = 0; round < 8; ++round )  {
                work   = (right << 28) | (right >>> 4);
                work  ^= keys[keysi++];
                fval   = SP7[ work         & 0x0000003f ];
                fval  |= SP5[(work >>>  8) & 0x0000003f ];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbCopyUtil.java

                                ioff += maxChunkSize;
                            }
    
                            if ( dfd == null || !dfd.isValid() ) {
                                // don't reopen the file for every round if it's not necessary, keep the lock
                                dfd = openCopyTargetFile(dest, src.getAttributes(), !write);
                            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                    SmbTransportImpl found = findConnection(
                        tf,
                        addr,
                        port,
                        tf.getConfig().getLocalAddr(),
                        tf.getConfig().getLocalPort(),
                        name,
                        forceSigning,
                        true);
                    if ( found != null ) {
                        return found;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtStatus.java

            "The referenced account is currently locked out and may not be logged on to.", "Connection refused",
            "The remote system is not reachable by the transport.", "The layered file system driver for this I/O tag did not handle it when needed.",
            "No more files were found that match the file specification.",
        };
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 10:09:29 UTC 2019
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            values.add(value);
            boolean found = false;
            Iterator entries = requestProperties.entrySet().iterator();
            while (entries.hasNext()) {
                Map.Entry entry = (Map.Entry) entries.next();
                if (key.equalsIgnoreCase((String) entry.getKey())) {
                    entry.setValue(values);
                    found = true;
                    break;
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

                    if (logger.isDebugEnabled()) {
                        logger.debug("Token: {}", tokenValue);
                    }
                } else if (logger.isDebugEnabled()) {
                    logger.debug("Token is not found.\n{}", content);
                }
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NbtAddress.java

        /**
         * This is a special name for querying the master browser that serves the
         * list of hosts found in "Network Neighborhood".
         */
    
        public static final String MASTER_BROWSER_NAME = "\u0001\u0002__MSBROWSE__\u0002";
    
        /**
         * A special generic name specified when connecting to a host for which
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                }
            } else {
                try {
                    writeHeaders(response);
                    response.sendError(HttpServletResponse.SC_NOT_FOUND, path + " is not found.");
                } catch (final ClientAbortException e) {
                    logger.debug("Client aborts this request.", e);
                } catch (final IOException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "Access is denied.",
            "A duplicate name exists on the network.",
            "The specified network name is no longer available.",
            "Network access is denied.",
            "The network name cannot be found.",
            "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.1K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

                try {
                    tikaConfig = crawlerContainer.getComponent("tikaConfig");
                } catch (final Exception e) {
                    logger.debug("tikaConfig component is not found.", e);
                }
            }
    
            if (tikaConfig == null) {
                tikaConfig = TikaConfig.getDefaultConfig();
            }
    
            if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top