Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for subtitle (0.04 sec)

  1. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            facetQueryView.setTitle(testTitle);
            assertEquals(testTitle, facetQueryView.getTitle());
        }
    
        public void test_setTitle() {
            String title1 = "Title 1";
            facetQueryView.setTitle(title1);
            assertEquals(title1, facetQueryView.getTitle());
    
            String title2 = "Different Title";
            facetQueryView.setTitle(title2);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

         */
        public String getTitle() {
            return title;
        }
    
        /**
         * Sets the title for this facet query view.
         *
         * @param title the title to set
         */
        public void setTitle(final String title) {
            this.title = title;
        }
    
        /**
         * Gets the map of display keys to query strings.
         *
         * @return the query map
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

      }
    
      /**
       * Okio buffers are internally implemented as a linked list of arrays. Usually this implementation
       * detail is invisible to the caller, but subtle use of certain APIs may depend on these internal
       * structures.
       *
       * We make such subtle calls in [okhttp3.internal.ws.MessageInflater] because we try to read a
       * compressed stream that is terminated in a web socket frame even though the DEFLATE stream is
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java

                result.setTelephoneNumber(DfTypeUtil.toString(source.get("telephoneNumber")));
                result.setTeletexTerminalIdentifier(DfTypeUtil.toString(source.get("teletexTerminalIdentifier")));
                result.setTitle(DfTypeUtil.toString(source.get("title")));
                result.setUidNumber(DfTypeUtil.toLong(source.get("uidNumber")));
                result.setX121Address(DfTypeUtil.toString(source.get("x121Address")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     *   <li>All events for a given listener dispatch on the provided executor.
     *   <li>It is easy for the user to ensure that listeners are never invoked while holding locks.
     * </ul>
     *
     * The last point is subtle. Often the observable object will be managing its own internal state
     * using a lock, however it is dangerous to dispatch listeners while holding a lock because they
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Ascii.java

       * String#equalsIgnoreCase}). However in almost all cases that ASCII strings are used, the author
       * probably wanted the behavior provided by this method rather than the subtle and sometimes
       * surprising behavior of {@code toUpperCase()} and {@code toLowerCase()}.
       *
       * @since 16.0
       */
      public static boolean equalsIgnoreCase(CharSequence s1, CharSequence s2) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

            this.teletexTerminalIdentifier = value;
        }
    
        public String getTitle() {
            checkSpecifiedProperty("title");
            return convertEmptyToNull(title);
        }
    
        public void setTitle(String value) {
            registerModifiedProperty("title");
            this.title = value;
        }
    
        public Long getUidNumber() {
            checkSpecifiedProperty("uidNumber");
            return uidNumber;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.java

                    (et, vl) -> ((User) et).setTeletexTerminalIdentifier(DfTypeUtil.toString(vl)), "teletexTerminalIdentifier");
            setupEpg(_epgMap, et -> ((User) et).getTitle(), (et, vl) -> ((User) et).setTitle(DfTypeUtil.toString(vl)), "title");
            setupEpg(_epgMap, et -> ((User) et).getUidNumber(), (et, vl) -> ((User) et).setUidNumber(DfTypeUtil.toLong(vl)), "uidNumber");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 27K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            viewHelper.addInitGeoParam("key2", "value2");
            assertEquals("key2", viewHelper.getInitGeoParamMap().get("value2"));
    
            FacetQueryView facetQueryView = new FacetQueryView();
            facetQueryView.setTitle("test");
            viewHelper.addFacetQueryView(facetQueryView);
            assertTrue(viewHelper.getFacetQueryViewList().contains(facetQueryView));
    
            viewHelper.addInlineMimeType("text/plain");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Predicates.java

       * to use {@code Predicates.<Object>in()}.
       *
       * <p>You may prefer to use a method reference (e.g., {@code target::contains}) instead of this
       * method. However, there are some subtle considerations:
       *
       * <ul>
       *   <li>The {@link Predicate} returned by this method is {@link Serializable}.
       *   <li>The {@link Predicate} returned by this method catches {@link ClassCastException} and
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top