Search Options

Results per page
Sort
Preferred Languages
Advance

Results 471 - 480 of 835 for Gang (0.02 sec)

  1. FessProp.java

    default boolean isOnlineHelpSupportedLang(final String lang) { L869: if (StringUtil.isBlank(getOnlineHelpSupportedLangs())) { L870: return false; L871: } L872: return split(getOnlineHelpSupportedLangs(), ",").get(stream -> stream.filter(StringUtil::isNotBlank).anyMatch(s -> s.equals(lang))); L873: } L874: L875: String getForumSupportedLangs(); L876: L877: default boolean isForumSupportedLang(final String lang) { L878: if (StringUtil.isBlank(getForumSupportedLangs()))...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      87.2K bytes
  2. DocMap.java

    java.util.Collections; L21:import java.util.LinkedHashSet; L22:import java.util.List; L23:import java.util.Map; L24:import java.util.Set; L25: L26:public class DocMap implements Map<String, Object> { L27: L28: private static final String LANG_KEY = "lang"; L29: private final Map<String, Object> parent; L30: L31: public DocMap(final Map<String, Object> parent) { L32: this.parent = parent; L33: } L34: L35: @Override L36: public int size() { L37: return parent.size(); L38:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.8K bytes
  3. searchOptions.jsp

    </c:if> L73: </la:select> L74: </fieldset> L75: <fieldset class="form-group"> L76: <legend><la:message key="labels.index_lang" /></legend> L77: <label for="contentLang"><la:message key="labels.index_lang" /></label> L78: <la:select property="lang" styleId="langSearchOption" multiple="true" L79: styleClass="form-control"> L80: <c:forEach var="item" items="${langItems}"> L81: <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option> L82: </c:forEach> L83: </la:select> L84:...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Wed Jul 17 08:19:53 UTC 2019
      3.7K bytes
  4. KeyMatchService.java

    specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.service; L17: L18:import java.util.List; L19: L20:import org.codelibs.core.beans.util.BeanUtil; L21:import org.codelibs.core.lang.StringUtil; L22:import org.codelibs.fess.Constants; L23:import org.codelibs.fess.app.pager.KeyMatchPager; L24:import org.codelibs.fess.es.config.cbean.KeyMatchCB; L25:import org.codelibs.fess.es.config.exbhv.KeyMatchBhv; L26:import org.codelibs.fe...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3K bytes
  5. searchOptions.jsp

    </c:if> L73: </la:select> L74: </fieldset> L75: <fieldset class="form-group"> L76: <legend><la:message key="labels.index_lang" /></legend> L77: <label for="contentLang"><la:message key="labels.index_lang" /></label> L78: <la:select property="lang" styleId="langSearchOption" multiple="true" L79: styleClass="form-control"> L80: <c:forEach var="item" items="${langItems}"> L81: <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option> L82: </c:forEach> L83: </la:select> L84:...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Wed Jul 17 08:19:53 UTC 2019
      3.7K bytes
  6. DoubleUtilsTest.java

    ing.FINITE_DOUBLE_CANDIDATES; L21:import static com.google.common.math.MathTesting.POSITIVE_FINITE_DOUBLE_CANDIDATES; L22:import static com.google.common.truth.Truth.assertThat; L23:import static org.junit.Assert.assertThrows; L24: L25:import java.lang.reflect.Method; L26:import java.math.BigInteger; L27:import junit.framework.TestCase; L28: L29:/** L30: * Tests for {@link DoubleUtils}. L31: * L32: * @author Louis Wasserman L33: */ L34:public class DoubleUtilsTest extends TestCase { L35: @AndroidIncompatible...
    github.com/google/guava/android/guava-tests/tes...
    Wed Jul 03 18:10:55 UTC 2024
      3K bytes
  7. RegularImmutableList.java

    License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.collect; L18: L19:import static com.google.common.base.Preconditions.checkElementIndex; L20:import static java.lang.System.arraycopy; L21:import static java.util.Objects.requireNonNull; L22: L23:import com.google.common.annotations.GwtCompatible; L24:import com.google.common.annotations.GwtIncompatible; L25:import com.google.common.annotations.J2ktIncompatible;...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      2.8K bytes
  8. Hashing.java

    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.collect; L18: L19:import static java.lang.Math.max; L20: L21:import com.google.common.annotations.GwtCompatible; L22:import com.google.common.primitives.Ints; L23:import javax.annotation.CheckForNull; L24: L25:/** L26: * Static methods for implementing hash-based collections. L27: * L28: *...
    github.com/google/guava/guava/src/com/google/co...
    Fri Oct 18 20:24:49 UTC 2024
      2.5K bytes
  9. AbstractIteratorTest.java

    com.google.common.annotations.J2ktIncompatible; L24:import com.google.common.collect.TestExceptions.SomeCheckedException; L25:import com.google.common.collect.TestExceptions.SomeUncheckedException; L26:import com.google.common.testing.GcFinalization; L27:import java.lang.ref.WeakReference; L28:import java.util.Iterator; L29:import java.util.NoSuchElementException; L30:import junit.framework.TestCase; L31:import org.checkerframework.checker.nullness.qual.Nullable; L32: L33:/** L34: * Unit test for {@code AbstractIterator}....
    github.com/google/guava/android/guava-tests/tes...
    Tue Oct 15 17:36:06 UTC 2024
      8.1K bytes
  10. AbstractIteratorTest.java

    com.google.common.annotations.J2ktIncompatible; L24:import com.google.common.collect.TestExceptions.SomeCheckedException; L25:import com.google.common.collect.TestExceptions.SomeUncheckedException; L26:import com.google.common.testing.GcFinalization; L27:import java.lang.ref.WeakReference; L28:import java.util.Iterator; L29:import java.util.NoSuchElementException; L30:import junit.framework.TestCase; L31:import org.checkerframework.checker.nullness.qual.Nullable; L32: L33:/** L34: * Unit test for {@code AbstractIterator}....
    github.com/google/guava/guava-tests/test/com/go...
    Tue Oct 15 17:36:06 UTC 2024
      8.1K bytes
Back to top