Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,071 for flaw (0.04 sec)

  1. CHANGELOG/CHANGELOG-1.16.md

      - the `--cloud-provider-gce-lb-src-cidrs` flag has been deprecated. This flag will be removed once the GCE Cloud Provider is removed from kube-apiserver. ([#81094](https://github.com/kubernetes/kubernetes/pull/81094), [@andrewsykim](https://github.com/andrewsykim))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 345.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java

    public class ActionForm {
        /**
         * Default constructor.
         */
        public ActionForm() {
            // nothing
        }
    
        /**
         * The flag to replace aliases.
         */
        @Size(max = 10)
        public String replaceAliases;
    
        /**
         * The flag to reset dictionaries.
         */
        @Size(max = 10)
        public String resetDictionaries;
    
        /**
         * The number of shards for doc.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

                    boolean flag = false;
                    for (final String protocol : protocols) {
                        if (path.trim().startsWith(protocol.trim())) {
                            flag = true;
                            break;
                        }
                    }
                    if (!flag) {
                        return false;
                    }
                }
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

         * The URL where the crawling error occurred.
         */
        private final String url;
    
        /**
         * Flag indicating whether the crawling process should be aborted.
         */
        private final boolean abort;
    
        /**
         * Creates a new DataStoreCrawlingException with the specified URL, message, and cause.
         * The abort flag is set to false by default.
         *
         * @param url the URL where the crawling error occurred
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  5. okcurl/src/main/kotlin/okhttp3/curl/Main.kt

      val allowInsecure: Boolean by option("-k", "--insecure").help("Allow connections to SSL sites without certs").flag()
    
      val showHeaders: Boolean by option("-i", "--include").help("Include protocol headers in the output").flag()
    
      val showHttp2Frames: Boolean by option("--frames").help("Log HTTP/2 frames to STDERR").flag()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

        /** The total number of records. */
        private int allRecordCount;
    
        /** The total number of pages. */
        private int allPageCount;
    
        /** A flag indicating if a previous page exists. */
        private boolean existPrePage;
    
        /** A flag indicating if a next page exists. */
        private boolean existNextPage;
    
        /** A list of page numbers for navigation. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

            if (lowercaseWildcard) {
                return value.toLowerCase(Locale.ROOT);
            }
            return value;
        }
    
        /**
         * Sets the lowercase wildcard flag.
         *
         * @param lowercaseWildcard the lowercase wildcard flag
         */
        public void setLowercaseWildcard(final boolean lowercaseWildcard) {
            this.lowercaseWildcard = lowercaseWildcard;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

     *   <li>{@code logger} - Logger instance for logging warnings.</li>
     *   <li>{@code PREFIX} - Prefix for the temporary file name.</li>
     *   <li>{@code SUFFIX} - Suffix for the temporary file name.</li>
     *   <li>{@code done} - Flag indicating whether the file has been retrieved.</li>
     * </ul>
     *
     * <p>Constructors:</p>
     * <ul>
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        /** Total number of records across all pages */
        private int allRecordCount;
    
        /** Total number of pages */
        private int allPageCount;
    
        /** Flag indicating if a previous page exists */
        private boolean existPrePage;
    
        /** Flag indicating if a next page exists */
        private boolean existNextPage;
    
        /** List of page numbers for pagination display */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

        private int allRecordCount;
    
        /**
         * Total number of pages available for pagination.
         */
        private int allPageCount;
    
        /**
         * Flag indicating whether a previous page exists.
         */
        private boolean existPrePage;
    
        /**
         * Flag indicating whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * List of page numbers for pagination navigation.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top