Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,376 for getI (0.15 sec)

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

                        if (!thumbnailManager.offer(doc)) {
                            if (logger.isDebugEnabled()) {
                                logger.debug("Removing {}={} from doc[{}]", thumbnailField, doc.get(thumbnailField),
                                        doc.get(fessConfig.getIndexFieldUrl()));
                            }
                            doc.remove(thumbnailField);
                        }
                    });
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

                    }
                });
                Files.deleteIfExists(dir);
            } catch (final IOException e) {
                logger.warn("Failed to delete {}", dir, e);
            }
        }
    
        /**
         * Gets the JAR file path for the given artifact.
         *
         * @param artifact the theme artifact
         * @return the path to the JAR file
         * @throws ThemeException if the JAR file does not exist
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SID.java

        int SID_TYPE_INVALID = 7;
    
        /**
         * SID type indicating an unknown account type.
         */
        int SID_TYPE_UNKNOWN = 8;
    
        /**
         * Gets the domain SID for this SID.
         *
         * @return domain SID
         */
        SID getDomainSid();
    
        /**
         * Get the RID
         *
         * This is the last subauthority identifier
         *
         * @return the RID
         */
        int getRid();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/av/AvPairs.java

                }
            }
            return false;
        }
    
        /**
         * Gets the first AV pair of the specified type from the list
         *
         * @param pairs the list of AV pairs to search
         * @param type the AV pair type to retrieve
         * @return first occurance of the given type
         */
        public static AvPair get(final List<AvPair> pairs, final int type) {
            for (final AvPair p : pairs) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt

       * It is set by a client who only wants to make a request if it can be fully satisfied by the
       * cache. Cached responses that would require validation (ie. conditional gets) are not permitted
       * if this header is set.
       */
      @get:JvmName("onlyIfCached") val onlyIfCached: Boolean,
      @get:JvmName("noTransform") val noTransform: Boolean,
      @get:JvmName("immutable") val immutable: Boolean,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

        /**
         * Gets the session data associated with the specified key.
         *
         * @param key the key for which to retrieve the session data, must not be {@code null}
         * @return the session data associated with the key or {@code null} if none
         */
        @Nullable
        <T> T get(@Nonnull Key<T> key);
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Transport.java

            } finally {
                super.finalize();
            }
        }
    
        /**
         * Gets the current usage count for this transport.
         *
         * @return the number of known usages
         */
        protected long getUsageCount() {
            return this.usageCount.get();
        }
    
        /**
         * Generate a unique key for the given request
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                        }
                    });
                } catch (final Exception e) {
                    logger.warn("Failed to access log files.", e);
                }
            }
        }
    
        /**
         * Gets host information including hostname and IP address.
         *
         * @return formatted string containing hostname and IP address
         */
        protected String getHostInfo() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

        }
    
        /**
         * Gets the crawling configuration for the specified session ID.
         *
         * @param sessionCountId the session count ID
         * @return the crawling configuration
         */
        protected CrawlingConfig getCrawlingConfig(final String sessionCountId) {
            return ComponentUtil.getCrawlingConfigHelper().get(sessionCountId);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/FileEntry.java

     *
     */
    public interface FileEntry {
    
        /**
         * Gets the file name.
         *
         * @return the file name
         */
        String getName();
    
        /**
         * Gets the file type.
         *
         * @return the file type
         */
        int getType();
    
        /**
         * Gets the file attributes.
         *
         * @return the file attributes
         */
        int getAttributes();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top