Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 301 for relation (0.07 sec)

  1. guava/src/com/google/common/base/MoreObjects.java

          this.className = checkNotNull(className);
        }
    
        /**
         * Configures the {@link ToStringHelper} so {@link #toString()} will ignore properties with null
         * value. The order of calling this method, relative to the {@code add()}/{@code addValue()}
         * methods, is not significant.
         *
         * @since 18.0 (since 12.0 as {@code Objects.ToStringHelper.omitNullValues()}).
         */
        @CanIgnoreReturnValue
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        /**
         * Checks if a file exists at the specified path within the servlet context.
         *
         * @param path the file path relative to the servlet context
         * @return true if the file exists, false otherwise
         */
        public static boolean fileExists(final String path) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

        public String boostExpr;
    
        /** Sort order for search filtering. */
        public String sortOrder;
    
        /** Creator username for search filtering. */
        public String createdBy;
    
        /** Creation time for search filtering. */
        public String createdTime;
    
        /** Version number for search filtering. */
        public String versionNo;
    
        /**
         * Default constructor for BoostDocPager.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java

         */
        public String webConfigId;
    
        /**
         * Search criteria: creator user.
         */
        public String createdBy;
    
        /**
         * Search criteria: creation time.
         */
        public String createdTime;
    
        /**
         * Search criteria: version number.
         */
        public String versionNo;
    
        /**
         * Clears all pager data and search criteria.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

            }
            return themeName;
        }
    
        /**
         * Recursively deletes a directory and all its contents.
         * Does not throw exceptions, only logs warnings if deletion fails.
         *
         * @param dir the directory to delete
         */
        protected void closeQuietly(final Path dir) {
            if (Files.notExists(dir)) {
                if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        public String suggestWord;
    
        /** Search parameter: boost value */
        public String boost;
    
        /** Search parameter: created by user */
        public String createdBy;
    
        /** Search parameter: creation time */
        public String createdTime;
    
        /** Search parameter: version number */
        public String versionNo;
    
        /**
         * Clears all pagination data and search parameters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            buildSearchCondition(failureUrlPager, cb);
        }
    
        /**
         * Deletes all failure URLs that match the criteria specified in the pager.
         *
         * @param failureUrlPager the pager containing deletion criteria
         */
        public void deleteAll(final FailureUrlPager failureUrlPager) {
            failureUrlBhv.queryDelete(cb -> {
                buildSearchCondition(failureUrlPager, cb);
            });
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        }
    
        /**
         * Deletes a Kuromoji dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the Kuromoji item to delete
         * @return JSON response indicating the deletion status
         */
        // DELETE /api/admin/dict/kuromoji/setting/{dictId}/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

    * GCI: Update the command to get the image ([#24987](https://github.com/kubernetes/kubernetes/pull/24987), [@andyzheng0831](https://github.com/andyzheng0831))
    * Validate deletion timestamp doesn't change on update ([#24839](https://github.com/kubernetes/kubernetes/pull/24839), [@liggitt](https://github.com/liggitt))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         * Gets the resource path for configuration files, checking type-specific variants first.
         *
         * @param basePath the base path for resources
         * @param type     the search engine type
         * @param path     the relative path to the resource
         * @return the full resource path
         */
        protected String getResourcePath(final String basePath, final String type, final String path) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top