Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 435 for demais (0.03 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

      }
    
      @Test fun test() {
        val t1 = System.nanoTime() / 1e6
    
        val delays = mutableListOf(TimeUnit.MILLISECONDS.toNanos(1000), -1L)
        queue.schedule("task", TimeUnit.MILLISECONDS.toNanos(750)) {
          log.put("runOnce delays.size=${delays.size}")
          return@schedule delays.removeAt(0)
        }
    
        assertThat(log.take()).isEqualTo("runOnce delays.size=2")
        val t2 = System.nanoTime() / 1e6 - t1
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. okhttp/src/commonTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        // checkPublicSuffix("a.b.example.local", null);
        // TLD with only 1 rule.
        checkPublicSuffix("biz", null)
        checkPublicSuffix("domain.biz", "domain.biz")
        checkPublicSuffix("b.domain.biz", "domain.biz")
        checkPublicSuffix("a.b.domain.biz", "domain.biz")
        // TLD with some 2-level rules.
        checkPublicSuffix("com", null)
        checkPublicSuffix("example.com", "example.com")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals(".*\\Qwww.domain.com/test\\E.*", systemHelper.normalizeConfigPath("contains:www.domain.com/test"));
            assertEquals(".*\\Q/test/\\E.*", systemHelper.normalizeConfigPath("contains:/test/"));
            assertEquals("www.domain.com/test", systemHelper.normalizeConfigPath("www.domain.com/test"));
            assertEquals(".*domain.com/.*", systemHelper.normalizeConfigPath(".*domain.com/.*"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/SsoLoginException.java

         * Constructs a new SsoLoginException with the specified detail message.
         *
         * @param message The detail message explaining the SSO login failure
         */
        public SsoLoginException(final String message) {
            super(message);
        }
    
        /**
         * Constructs a new SsoLoginException with the specified detail message and cause.
         *
         * @param message The detail message explaining the SSO login failure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/basicInfoMap.dfprop

        #  The base directory of package for generated class.
        #  The class package is 'this property value + detail package value'.
        #  However, detail packages have default value so basically
        #  you only have to specify the property 'packageBase'.
        #  If this property is specified and detail package properties is not specified, 
        #  Then the packages of generated class are as follows:
        #
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_fr.properties

    labels.failure_url_link_list=Liste
    labels.failure_url_link_details=Détails
    labels.failure_url_link_delete=Supprimer
    labels.failure_url_delete_all_link=Tout supprimer
    labels.failure_url_delete_all_confirmation=Êtes-vous sûr de vouloir tout supprimer ?
    labels.failure_url_delete_all_cancel=Annuler
    labels.failure_url_error_count=Nombre d'erreurs
    labels.failure_url_title_details=Détails de l'URL d'échec
    labels.failure_url_id=ID
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

         *
         * @param crudMode the CRUD mode for the operation
         * @param id the ID of the web config to display
         * @return HTML response for the web config details page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse details(final int crudMode, final String id) {
            verifyCrudMode(crudMode, CrudMode.DETAILS);
            saveToken();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

         */
        public void setCookieName(final String cookieName) {
            this.cookieName = cookieName;
        }
    
        /**
         * Sets the domain for the user identification cookie.
         *
         * @param cookieDomain the domain to use for the user identification cookie
         */
        public void setCookieDomain(final String cookieDomain) {
            this.cookieDomain = cookieDomain;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_2x.md

        ```
    
     * **`CertificatePinner` now supports wildcard hostnames.** As always with
       certificate pinning, you must be very careful to avoid [bricking][brick]
       your app. You'll need to pin both the top-level domain and the `*.` domain
       for full coverage.
    
        ```java
         client.setCertificatePinner(new CertificatePinner.Builder()
             .add("publicobject.com",   "sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw=")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java

         *
         * @param message the detail message explaining the exception
         * @param cause   the underlying cause of the exception
         */
        public SearchEngineClientException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new SearchEngineClientException with the specified message.
         *
         * @param message the detail message explaining the exception
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top