Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 236 for help (0.03 sec)

  1. IndexedImmutableSet.java

    L78: return IndexedImmutableSet.this; L79: } L80: L81: // redeclare to help optimizers with b/310253115 L82: @SuppressWarnings("RedundantOverride") L83: @Override L84: @J2ktIncompatible // serialization L85: @GwtIncompatible // serialization L86: Object writeReplace() { L87: return super.writeReplace(); L88: } L89: }; L90: } L91: L92: // redeclare to help optimizers with b/310253115 L93: @SuppressWarnings("RedundantOverride") L94: @Override...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      2.7K bytes
  2. FessConfig.java

    "online.help.name.dict.synonym"; L1469: L1470: /** The key of the configuration. e.g. dict */ L1471: String ONLINE_HELP_NAME_DICT = "online.help.name.dict"; L1472: L1473: /** The key of the configuration. e.g. kuromoji */ L1474: String ONLINE_HELP_NAME_DICT_KUROMOJI = "online.help.name.dict.kuromoji"; L1475: L1476: /** The key of the configuration. e.g. protwords */ L1477: String ONLINE_HELP_NAME_DICT_PROTWORDS = "online.help.name.dict.protwords"; L1478: L1479: /** The key of the...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  3. admin_searchlist_edit.jsp

    <la:textarea styleId="doc.role" L127: property="doc.role" styleClass="form-control" L128: data-validation-help="1(username) | 2(groupname) | R(rolename) e.g. Rguest"/> L129: </div> L130: </div> L131: <div class="form-group row"> L132: ...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      24.9K bytes
  4. NullnessCasts.java

    L23:@ElementTypesAreNonnullByDefault L24:final class NullnessCasts { L25: /** L26: * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that L27: * that conversion is safe. L28: * L29: * <p>This method is intended to help with usages of type parameters that have {@linkplain L30: * ParametricNullness parametric nullness}. If a type parameter instead ranges over only non-null L31: * types (or if the type is a non-variable type, like {@code String}), then code should...
    github.com/google/guava/android/guava/src/com/g...
    Thu Feb 10 20:36:34 UTC 2022
      3.5K bytes
  5. NullnessCasts.java

    L23:@ElementTypesAreNonnullByDefault L24:final class NullnessCasts { L25: /** L26: * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that L27: * that conversion is safe. L28: * L29: * <p>This method is intended to help with usages of type parameters that have {@linkplain L30: * ParametricNullness parametric nullness}. If a type parameter instead ranges over only non-null L31: * types (or if the type is a non-variable type, like {@code String}), then code should...
    github.com/google/guava/guava/src/com/google/co...
    Thu Feb 10 20:36:34 UTC 2022
      3.5K bytes
  6. DenseImmutableTable.java

    getValue(index); L142: if (value != null) { L143: return immutableEntry(getKey(index), value); L144: } L145: } L146: return endOfData(); L147: } L148: }; L149: } L150: L151: // redeclare to help optimizers with b/310253115 L152: @SuppressWarnings("RedundantOverride") L153: @J2ktIncompatible // serialization L154: @Override L155: @GwtIncompatible // serialization L156: Object writeReplace() { L157: return super.writeReplace();...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:05:46 UTC 2024
      10.1K bytes
  7. jquery.form-validator.min.js

    c,!0,e)})}),this},a.fn.showHelpOnFocus=function(b){return b||(b="data-validation-help"),this.find("textarea,input").each(function(){var c=a(this),e="jquery_form_help_"+ ++d,f=c.attr(b);c.removeClass("has-help-text").unbind("focus.help").unbind("blur.help"),f&&c.addClass("has-help-txt").bind("focus.help",function(){var b=c.parent().find("."+e);0===b.length&&(b=a("<span />").addClass(e).addClass("help").addClass("help-block").text(f).hide(),c.after(b)),b.fadeIn()}).bind("blur.help",function(){a(th...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Jan 01 05:12:47 UTC 2018
      32.8K bytes
  8. fess.xml

    <arg>"searchOptions.jsp"</arg> L77: </postConstruct> L78: <postConstruct name="addDesignJspFileName"> L79: <arg>"advance"</arg> L80: <arg>"advance.jsp"</arg> L81: </postConstruct> L82: <postConstruct name="addDesignJspFileName"> L83: <arg>"help"</arg> L84: <arg>"help.jsp"</arg> L85: </postConstruct> L86: <postConstruct name="addDesignJspFileName"> L87: <arg>"error"</arg> L88: <arg>"error/error.jsp"</arg> L89: </postConstruct> L90: <postConstruct name="addDesignJspFileName"> L91: <arg>"errorNotFound"</arg>...
    github.com/codelibs/fess/src/main/resources/fes...
    Sun Jul 28 09:03:48 UTC 2024
      5.2K bytes
  9. NullnessCasts.java

    L23:@ElementTypesAreNonnullByDefault L24:final class NullnessCasts { L25: /** L26: * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that L27: * that conversion is safe. L28: * L29: * <p>This method is intended to help with usages of type parameters that have {@linkplain L30: * ParametricNullness parametric nullness}. If a type parameter instead ranges over only non-null L31: * types (or if the type is a non-variable type, like {@code String}), then code should...
    github.com/google/guava/android/guava/src/com/g...
    Thu Feb 10 20:36:34 UTC 2022
      3.9K bytes
  10. ImmutableMapValues.java

    get(int index) { L88: return entryList.get(index).getValue(); L89: } L90: L91: @Override L92: ImmutableCollection<V> delegateCollection() { L93: return ImmutableMapValues.this; L94: } L95: L96: // redeclare to help optimizers with b/310253115 L97: @SuppressWarnings("RedundantOverride") L98: @Override L99: @J2ktIncompatible // serialization L100: @GwtIncompatible // serialization L101: Object writeReplace() { L102: return super.writeReplace();...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      3.6K bytes
Back to top