Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1521 - 1530 of 1,673 for Docstring (0.38 sec)

  1. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         */
        public void deleteInstalledArtifact(final Artifact artifact) {
            final String fileName = artifact.getFileName();
            final Path jarPath = Paths.get(ResourceUtil.getPluginPath().toString(), fileName);
            if (!Files.exists(jarPath)) {
                throw new PluginException(fileName + " does not exist.");
            }
    
            switch (artifact.getType()) {
            case THEME:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                        if (selectedVersion != null) {
                                            resetArtifact.selectVersion(selectedVersion.toString());
                                        } else {
                                            throw new OverConstrainedVersionException(
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RangeSet.java

       * RangeSet} consisted of {@code Range.closed(1, 3)} and {@code Range.greaterThan(4)}, this might
       * return {@code " [1..3](4..+∞)}"}.
       */
      @Override
      String toString();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/PathValidator.java

                }
    
                // Add normalized path
                if (path != null && !path.isEmpty()) {
                    normalized.append(normalizePath(path));
                }
    
                return normalized.toString();
    
            } catch (MalformedURLException e) {
                throw new SmbException("Invalid SMB URL format: " + e.getMessage());
            }
        }
    
        /**
         * Check if path contains traversal sequences
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/Type2Message.java

            pos += writeSecurityBufferContent(type2, pos, targetInfoOff, targetInformationBytes);
    
            return type2;
        }
    
        @Override
        public String toString() {
            final String targetString = getTarget();
            final byte[] challengeBytes = getChallenge();
            final byte[] contextBytes = getContext();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

            try (KuromojiUpdater updater = new KuromojiUpdater(null)) {
                reload(updater, in);
            }
        }
    
        @Override
        public String toString() {
            return "KuromojiFile [path=" + path + ", kuromojiItemList=" + kuromojiItemList + ", id=" + id + "]";
        }
    
        /**
         * An updater for Kuromoji files.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

        Object[] params = new Object[paramTypes.length];
        for (int i = 0; i < paramTypes.length; i++) {
          Class<?> paramType = paramTypes[i];
          if (paramType.equals(String.class)) {
            params[i] = cause.toString();
          } else if (paramType.equals(Throwable.class)) {
            params[i] = cause;
          } else {
            return null;
          }
        }
        try {
          return constructor.newInstance(params);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

            sb.append(dm).append(x121Address);
            if (sb.length() > dm.length()) {
                sb.delete(0, dm.length());
            }
            sb.insert(0, "{").append("}");
            return sb.toString();
        }
    
        // ===================================================================================
        //                                                                            Accessor
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt

          }
    
          Unit
        }
    
        if (noNewExchangesEvent) {
          connectionListener.noNewExchanges(this)
        }
      }
    
      override fun protocol(): Protocol = protocol
    
      override fun toString(): String =
        "Connection{${route.address.url.host}:${route.address.url.port}," +
          " proxy=${route.proxy}" +
          " hostAddress=${route.socketAddress}" +
          " cipherSuite=${handshake?.cipherSuite ?: "none"}" +
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                } catch (final IOException ioe) {
                    if (LogStream.level > 1) {
                        ioe.printStackTrace(log);
                    }
                    throw new UnknownHostException(addr.toString());
                }
                if (response.received && response.resultCode == 0) {
    
                    /* For name queries resolved by different sources (e.g. WINS,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
Back to top