Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 325 for styles (0.03 sec)

  1. android/guava/src/com/google/common/collect/SortedSetMultimap.java

       * {@link Multimap} interface.
       */
      @CanIgnoreReturnValue
      @Override
      SortedSet<V> removeAll(@Nullable Object key);
    
      /**
       * Stores a collection of values with the same key, replacing any existing values for that key.
       *
       * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given key, this method
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/badword/admin_badword_details.jsp

                                    <table class="table table-bordered">
                                        <tbody>
                                        <tr>
                                            <th style="width: 25%"><la:message
                                                    key="labels.bad_word_suggest_word"/></th>
                                            <td>${f:h(suggestWord)}<la:hidden
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/adminlte.min.js

    on(){this._parent.find(this._settings.maximizeTrigger+" ."+this._settings.minimizeIcon).addClass(this._settings.maximizeIcon).removeClass(this._settings.minimizeIcon),this._parent.css("cssText","height: "+this._parent[0].style.height+" !important; width: "+this._parent[0].style.width+" !important; transition: all .15s;").delay(10).queue((function(){var e=n.default(this);e.removeClass(b),n.default("html").removeClass(b),e.css({height:"inherit",width:"inherit"}),e.hasClass(_)&&e.removeClass(_),e.d...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords_details.jsp

                                    <table class="table table-bordered">
                                        <tbody>
                                        <tr>
                                            <th style="width: 25%"><la:message
                                                    key="labels.dict_protwords_source"/></th>
                                            <td>${f:h(input)}<la:hidden property="input"/></td>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.2K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping_details.jsp

                                    <table class="table table-bordered">
                                        <tbody>
                                        <tr>
                                            <th style="width: 25%"><la:message
                                                    key="labels.dict_mapping_source"/></th>
                                            <td>${f:br(f:h(inputs))}<la:hidden property="inputs"/></td>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym_details.jsp

                                    <table class="table table-bordered">
                                        <tbody>
                                        <tr>
                                            <th style="width: 25%"><la:message
                                                    key="labels.dict_synonym_source"/></th>
                                            <td>${f:br(f:h(inputs))}<la:hidden property="inputs"/></td>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // https://www.iana.org/domains/root/db/srl.html
    srl
    
    // stada : STADA Arzneimittel AG
    // https://www.iana.org/domains/root/db/stada.html
    stada
    
    // staples : Staples, Inc.
    // https://www.iana.org/domains/root/db/staples.html
    staples
    
    // star : Star India Private Limited
    // https://www.iana.org/domains/root/db/star.html
    star
    
    // statebank : STATE BANK OF INDIA
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_2x.md

    advice on upgrading from 1.x to 2.x.
    
     *  Fix: Don't leak connections! There was a regression in 2.0.0-RC1 where
        connections were neither closed nor pooled.
     *  Fix: Revert builder-style return types from OkHttpClient's timeout methods
        for binary compatibility with OkHttp 1.x.
     *  Fix: Don't skip client stream 1 on SPDY/3.1. This fixes SPDY connectivity to
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

                cb.query().addOrderBy_Name_Asc();
                cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger());
            });
        }
    
        /**
         * Stores a scheduled job.
         * @param scheduledJob The scheduled job to store.
         */
        public void store(final ScheduledJob scheduledJob) {
            scheduledJobBhv.insertOrUpdate(scheduledJob, op -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

         */
        public OptionalEntity<StemmerOverrideItem> getStemmerOverrideItem(final String dictId, final long id) {
            return getStemmerOverrideFile(dictId).map(file -> file.get(id).get());
        }
    
        /**
         * Stores (creates or updates) a stemmer override item in the specified dictionary.
         *
         * If the item ID is 0, this method performs an insert operation. Otherwise,
         * it performs an update operation for the existing item.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top