Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 364 for Brooks (0.46 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java

    /**
     * A core extension to monitor Maven's execution. Typically, such an extension gets loaded into Maven by specifying the
     * property {@code maven.ext.class.path} on the command line. As soon as dependency injection is set up, Maven
     * looks up all implementers of this interface and calls their {@link #init(Context)} method. Note:
     * Implementors are strongly advised to inherit from {@link AbstractEventSpy} instead of directly implementing this
     * interface.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Feb 10 15:02:53 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

            }).orElse(Collections.emptyList());
        }
    
        /**
         * Retrieves the character mapping file for the specified dictionary ID.
         * <p>
         * This method looks up the dictionary file and ensures it is a character mapping file
         * before returning it wrapped in an OptionalEntity.
         * </p>
         *
         * @param dictId the dictionary ID to retrieve the character mapping file for
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  3. docs/en/docs/environment-variables.md

    * `C:\Program Files\Python312`
    * `C:\Windows\System32`
    
    ////
    
    When you type a **command** in the terminal, the operating system **looks for** the program in **each of those directories** listed in the `PATH` environment variable.
    
    For example, when you type `python` in the terminal, the operating system looks for a program called `python` in the **first directory** in that list.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+pull-request+part-2-windows.yml

        triggers:
          - github-pull-request:
              org-list:
                - elastic
              allow-whitelist-orgs-as-admins: true
              trigger-phrase: '.*run\W+elasticsearch-ci/part-2-windows.*'
              github-hooks: true
              status-context: elasticsearch-ci/part-2-windows
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 22:34:45 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        private final List<Thread> hooks = new ArrayList<>();
    
        @Override
        synchronized void addShutdownHook(Thread hook) {
          hooks.add(hook);
        }
    
        synchronized void shutdown() throws InterruptedException {
          for (Thread hook : hooks) {
            hook.start();
          }
          for (Thread hook : hooks) {
            hook.join();
          }
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  6. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-unix-sample.yml

          - github-pull-request:
              org-list:
                - elastic
              allow-whitelist-orgs-as-admins: true
              trigger-phrase: '.*run\W+elasticsearch-ci/packaging-tests-unix-sample.*'
              github-hooks: true
              status-context: elasticsearch-ci/packaging-tests-unix-sample
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 20:27:05 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  7. .ci/jobs.t/elastic+elasticsearch+pull-request+part-1-windows.yml

        triggers:
          - github-pull-request:
              org-list:
                - elastic
              allow-whitelist-orgs-as-admins: true
              trigger-phrase: '.*run\W+elasticsearch-ci/part-1-windows.*'
              github-hooks: true
              status-context: elasticsearch-ci/part-1-windows
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 22:34:45 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  8. .ci/jobs.t/elastic+elasticsearch+pull-request+eql-correctness.yml

        triggers:
          - github-pull-request:
              org-list:
                - elastic
              allow-whitelist-orgs-as-admins: true
              trigger-phrase: '.*run\W+elasticsearch-ci/eql-correctness.*'
              github-hooks: true
              status-context: elasticsearch-ci/eql-correctness
              cancel-builds-on-update: true
              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 20:27:05 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     *    will be used to authenticate the client's certificate chain. Typically this is not the same
     *    set of root certificates used in server authentication. Instead it will be a small set of
     *    roots private to an organization or service.
     */
    class HandshakeCertificates private constructor(
      @get:JvmName("keyManager") val keyManager: X509KeyManager,
      @get:JvmName("trustManager") val trustManager: X509TrustManager,
    ) {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat May 10 11:15:14 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  10. docs/en/docs/tutorial/security/oauth2-jwt.md

    We are going to start from where we left in the previous chapter and increment it.
    
    ## About JWT { #about-jwt }
    
    JWT means "JSON Web Tokens".
    
    It's a standard to codify a JSON object in a long dense string without spaces. It looks like this:
    
    ```
    eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top