Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for getPart (0.04 sec)

  1. src/main/java/jcifs/util/PathValidator.java

                    normalized.append(userInfo).append("@");
                }
    
                normalized.append(host.toLowerCase());
    
                // Add port if non-standard
                int port = url.getPort();
                if (port > 0 && port != 445 && port != 139) {
                    normalized.append(":").append(port);
                }
    
                // Add normalized path
                if (path != null && !path.isEmpty()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         */
        public List<CrawlingInfoParam> getLastCrawlingInfoParamList(final String sessionId) {
            final CrawlingInfo crawlingInfo = getLast(sessionId);
            if (crawlingInfo == null) {
                return Collections.emptyList();
            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

                    return 10;
                }
    
                @Override
                public int getStartPosition() {
                    return 0;
                }
    
                @Override
                public String getSort() {
                    return null;
                }
    
                @Override
                public Map<String, String[]> getFields() {
                    return new HashMap<>();
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

         * @return The highlight info.
         */
        public abstract HighlightInfo getHighlightInfo();
    
        /**
         * Returns the sort.
         *
         * @return The sort.
         */
        public abstract String getSort();
    
        /**
         * Returns the start position.
         *
         * @return The start position.
         */
        public abstract int getStartPosition();
    
        /**
         * Returns the page size.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

            String server = this.fileLocator.getServerWithDfs();
            int ai;
    
            if (resolveSids) {
                if (this.fileLocator.getDfsPath() == null && this.fileLocator.getPort() != -1) {
                    server = server + ":" + this.fileLocator.getPort();
                }
                final SID[] sids = new SID[aces.length];
                for (ai = 0; ai < aces.length; ai++) {
                    sids[ai] = aces[ai].getSID();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbResourceLocator.java

         */
        String getDfsPath();
    
        /**
         * Returns the transport port number for this SMB resource connection.
         *
         * @return the transport port, if specified
         */
        int getPort();
    
        /**
         * Returns the original URL object used to create this SMB resource.
         *
         * @return the original URL
         */
        URL getURL();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
    
            @Override
            public FacetInfo getFacetInfo() {
                return createFacetInfo(request);
            }
    
            @Override
            public String getSort() {
                return request.getParameter("sort");
            }
    
            @Override
            public int getStartPosition() {
                if (startPosition != -1) {
                    return startPosition;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/FluentIterable.java

       *
       * @throws NullPointerException if the last element is null; if this is a possibility, use {@link
       *     Iterables#getLast} instead.
       */
      @SuppressWarnings("nullness") // Unsafe, but we can't do much about it now.
      public final Optional<@NonNull E> last() {
        // Iterables#getLast was inlined here so we don't have to throw/catch a NSEE
    
        // TODO(kevinb): Support a concurrently modified collection?
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/FluentIterable.java

       *
       * @throws NullPointerException if the last element is null; if this is a possibility, use {@link
       *     Iterables#getLast} instead.
       */
      @SuppressWarnings("nullness") // Unsafe, but we can't do much about it now.
      public final Optional<@NonNull E> last() {
        // Iterables#getLast was inlined here so we don't have to throw/catch a NSEE
    
        // TODO(kevinb): Support a concurrently modified collection?
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                }
            }
    
            if (repository.getProxy() != null && logger.isDebugEnabled()) {
                logger.debug("Using proxy " + repository.getProxy().getHost() + ":"
                        + repository.getProxy().getPort() + " for " + repository.getUrl());
            }
    
            if (repository.getAuthentication() != null && repository.getProxy() != null) {
                wagon.connect(
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 29.9K bytes
    - Viewed (0)
Back to top