Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for gats (0.56 sec)

  1. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

      /**
       * The elements in this map would pass the UNDER test, but are known not to be public suffixes and
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:39:59 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.32.md

    - Removed generally available feature gate `LegacyServiceAccountTokenCleanUp`. ([#126839](https://github.com/kubernetes/kubernetes/pull/126839), [@carlory](https://github.com/carlory)) [SIG Auth]
    - Removed generally available feature gate `MinDomainsInPodTopologySpread`. ([#126863](https://github.com/kubernetes/kubernetes/pull/126863), [@carlory](https://github.com/carlory)) [SIG Scheduling]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.34.md

    - Added a new `FileKeyRef` field to containers, allowing them to load variables from files by setting this field.
      
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Enabled feature gates for PortForward (kubectl port-forward) over WebSockets by default (beta).
       - Server-side feature gate: PortForwardWebsocket
       - Client-side (kubectl) feature gate: PORT_FORWARD_WEBSOCKETS environment variable
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.33.md

    - The `SidecarContainers` feature has graduated to GA. 'SidecarContainers' feature gate was locked to default value and will be removed in v1.36. If you were setting this feature gate explicitly, please remove it now. ([#129731](https://github.com/kubernetes/kubernetes/pull/129731), [@gjki...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/QueryCommand.java

            ComponentUtil.getQueryProcessor().add(getQueryClassName(), this);
        }
    
        /**
         * Gets the query field configuration.
         * @return The query field configuration instance.
         */
        protected QueryFieldConfig getQueryFieldConfig() {
            return ComponentUtil.getQueryFieldConfig();
        }
    
        /**
         * Gets the query processor instance.
         * @return The query processor instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                }
            });
        }
    
        /**
         * Gets the username of the current user.
         *
         * @return The username, or "guest" if not logged in.
         */
        public String getUsername() {
            return getRequestManager().findUserBean(FessUserBean.class).map(FessUserBean::getUserId).orElse(Constants.GUEST_USER);
        }
    
        /**
         * Gets the request manager.
         *
         * @return The request manager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        }
    
        /**
         * Gets the total number of words in the suggest index.
         *
         * @return The total number of words.
         */
        public long getAllWordsNum() {
            return suggester.getAllWordsNum();
        }
    
        /**
         * Gets the number of words from documents in the suggest index.
         *
         * @return The number of document words.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/entity/QueryContext.java

        public boolean hasSorts() {
            return !sortBuilderList.isEmpty();
        }
    
        /**
         * Gets the list of sort builders for this query context.
         * @return The list of sort builders.
         */
        public List<SortBuilder<?>> sortBuilders() {
            return sortBuilderList;
        }
    
        /**
         * Gets the query builder for this context.
         * @return The query builder.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         * @param data the data to write
         */
        protected void write(final String path, final byte[] data) {
            LdiFileUtil.write(path, data);
        }
    
        /**
         * Gets the servlet context.
         *
         * @return the servlet context
         */
        protected ServletContext getServletContext() {
            return LaServletContextUtil.getServletContext();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top