Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 182 for endswith (0.05 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

             * @param child The child path to append
             * @return The complete child URL
             */
            public String toChildUrl(final String child) {
                final String url = toUrl();
                if (url.endsWith("/")) {
                    return normalize(toUrl() + child);
                }
                return normalize(toUrl() + "/" + child);
            }
    
            /**
             * Gets the parent directory path from the FTP URL.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                if (b > 0xFF) {
                    return doNameQuery(new Name(host, type, scope), svr);
                }
                IP = (IP << 8) + b;
                hitDots++;
            }
            if (hitDots != 4 || host.endsWith(".")) {
                return doNameQuery(new Name(host, type, scope), svr);
            }
            return new NbtAddress(UNKNOWN_NAME, IP, false, B_NODE);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                if (!dr.path.equals("")) {
                    dunc = "\\" + dr.path + dunc;
                }
    
                unc = dunc;
                if (request != null && request.path != null && request.path.endsWith("\\") && !dunc.endsWith("\\")) {
                    dunc += "\\";
                }
                if (request != null) {
                    request.path = dunc;
                    request.flags2 |= SmbConstants.FLAGS2_RESOLVE_PATHS_IN_DFS;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                if (StringUtil.isBlank(dictionaryPath)) {
                    System.setProperty("fess.dictionary.path", fessConfig.getIndexDictionaryPrefix() + "/");
                } else {
                    if (!dictionaryPath.endsWith("/")) {
                        dictionaryPath = dictionaryPath + "/";
                    }
                    System.setProperty("fess.dictionary.path", dictionaryPath + fessConfig.getIndexDictionaryPrefix() + "/");
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  5. okhttp/src/androidMain/baseline-prof.txt

    HSPLkotlin/text/StringsKt__StringNumberConversionsKt;->toIntOrNull(Ljava/lang/String;)Ljava/lang/Integer;
    HSPLkotlin/text/StringsKt__StringsJVMKt;->endsWith$default(Ljava/lang/String;Ljava/lang/String;ZI)Z
    HSPLkotlin/text/StringsKt__StringsJVMKt;->endsWith(Ljava/lang/String;Ljava/lang/String;Z)Z
    HSPLkotlin/text/StringsKt__StringsJVMKt;->equals(Ljava/lang/String;Ljava/lang/String;Z)Z
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 30 23:28:56 UTC 2024
    - 127.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InetAddresses.java

        checkNotNull(hostAddr);
    
        // Decide if this should be an IPv6 or IPv4 address.
        String ipString;
        int expectBytes;
        if (hostAddr.startsWith("[") && hostAddr.endsWith("]")) {
          ipString = hostAddr.substring(1, hostAddr.length() - 1);
          expectBytes = 16;
        } else {
          ipString = hostAddr;
          expectBytes = 4;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  7. configure.py

                                           'contrib', 'makefile', 'downloads')
      if os.path.isdir(makefile_download_dir):
        for root, _, filenames in os.walk(makefile_download_dir):
          for f in filenames:
            if f.endswith('BUILD'):
              os.remove(os.path.join(root, f))
    
    
    def get_var(environ_cp,
                var_name,
                query_item,
                enabled_by_default,
                question=None,
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Apr 30 15:18:54 UTC 2025
    - 48.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

                        return chainedResponse;
                    }
    
                    if (request instanceof SmbComTreeConnectAndX tcax) {
                        if (this.netbiosName != null && tcax.getPath().endsWith("\\IPC$")) {
                            /*
                             * Some pipes may require that the hostname in the tree connect
                             * be the netbios name. So if we have the netbios server name
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InetAddresses.java

        checkNotNull(hostAddr);
    
        // Decide if this should be an IPv6 or IPv4 address.
        String ipString;
        int expectBytes;
        if (hostAddr.startsWith("[") && hostAddr.endsWith("]")) {
          ipString = hostAddr.substring(1, hostAddr.length() - 1);
          expectBytes = 16;
        } else {
          ipString = hostAddr;
          expectBytes = 4;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

            }
        }
    
        private static String encodeRelativePath(String name) {
            // workaround fix
            if (name == null) {
                return null;
            }
            if (name.endsWith(" ")) {
                final StringBuilder suffix = new StringBuilder();
                for (int i = name.length() - 1; i >= 0; i--) {
                    if (name.charAt(i) != ' ') {
                        break;
                    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top