Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for identify (2.22 sec)

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

        /** Prefix used to identify role-based permissions */
        protected String rolePrefix = "{role}";
    
        /** Prefix used to identify group-based permissions */
        protected String groupPrefix = "{group}";
    
        /** Prefix used to identify user-based permissions */
        protected String userPrefix = "{user}";
    
        /** Prefix used to identify allow permissions */
        protected String allowPrefix = "(allow)";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Handshake.kt

      /** Returns a possibly-empty list of certificates that identify this peer. */
      @get:JvmName("localCertificates") val localCertificates: List<Certificate>,
      // Delayed provider of peerCertificates, to allow lazy cleaning.
      peerCertificatesFn: () -> List<Certificate>,
    ) {
      /** Returns a possibly-empty list of certificates that identify the remote peer. */
      @get:JvmName("peerCertificates")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Apr 05 09:48:10 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Protocol.kt

     *
     * Despite its name, [java.net.URL.getProtocol] returns the [scheme][java.net.URI.getScheme] (http,
     * https, etc.) of the URL, not the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word
     * *protocol* to identify how HTTP messages are framed.
     *
     * [ietf_alpn]: http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg
     */
    enum class Protocol(
      private val protocol: String,
    ) {
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jun 23 18:58:57 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

    import org.opensearch.common.unit.TimeValue;
    
    /**
     * Monitor target for tracking hot threads in the OpenSearch cluster.
     * This class extends MonitorTarget to provide monitoring functionality for
     * hot threads, which helps identify performance bottlenecks and resource
     * usage issues in the search engine cluster.
     */
    public class HotThreadMonitorTarget extends MonitorTarget {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  5. samples/slack/src/main/java/okhttp3/slack/SlackClient.java

            + "pins:write reactions:read reactions:write search:read stars:read stars:write team:read "
            + "usergroups:read usergroups:write users:read users:write identify";
    
        if (true) {
          client.requestOauthSession(scopes, null);
        } else {
          OAuthSession session = new OAuthSession(true,
              "xoxp-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jan 12 03:31:36 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

        }
    
        /**
         * Sets the prefix used to identify regex patterns in related content terms.
         * When a term starts with this prefix, it is treated as a regular expression
         * pattern rather than an exact match term.
         *
         * @param regexPrefix the prefix string to identify regex patterns (default: "regex:")
         */
        public void setRegexPrefix(final String regexPrefix) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        }
    
        /**
         * The name of the web configuration associated with this failure URL.
         * Used to identify which web crawling configuration encountered the failure.
         */
        public String webConfigName;
    
        /**
         * The name of the file configuration associated with this failure URL.
         * Used to identify which file crawling configuration encountered the failure.
         */
        public String fileConfigName;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/flaking-test.yaml

      - type: textarea
        id: additional
        attributes:
          label: Anything else we need to know?
    
      - type: textarea
        id: sigs
        attributes:
          label: Relevant SIG(s)
          description: You can identify the SIG from the "prowjob_config_url" on the testgrid dashboard for a test.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/failing-test.yaml

      - type: textarea
        id: additional
        attributes:
          label: Anything else we need to know?
    
      - type: textarea
        id: sigs
        attributes:
          label: Relevant SIG(s)
          description: You can identify the SIG from the "prowjob_config_url" on the testgrid dashboard for a test.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/bug_report.yaml

    name: Bug Report
    description: Something is not working as expected
    labels: ["type=defect"]
    body:
      - type: markdown
        attributes:
          value: >
            Thank you for filing a bug report. Please help us identify and resolve the bug by filling
            out the following fields. Before we begin, please make sure that the bug is still present in
            the [latest](https://github.com/google/guava/releases/latest) version of Guava available.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 16 20:08:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top