- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 835 for Gang (0.03 sec)
-
TypeResolverTest.java
License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.reflect; L18: L19:import static org.junit.Assert.assertThrows; L20: L21:import java.lang.reflect.ParameterizedType; L22:import java.lang.reflect.Type; L23:import java.util.List; L24:import java.util.Map; L25:import junit.framework.TestCase; L26: L27:/** L28: * Unit tests of {@link TypeResolver}. L29: * L30: * @author Ben Yu L31: */ L32:@AndroidIncompatible //...github.com/google/guava/guava-tests/test/com/go...Wed Sep 06 17:04:31 UTC 2023 9.7K bytes -
StemmerOverrideItem.java
express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.dict.stemmeroverride; L17: L18:import java.util.Objects; L19: L20:import org.codelibs.core.lang.StringUtil; L21:import org.codelibs.fess.dict.DictionaryItem; L22: L23:public class StemmerOverrideItem extends DictionaryItem { L24: private final String input; L25: L26: private final String output; L27: L28: private String newInput; L29:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 2.7K bytes -
FessConfig.java
/** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/{version}/admin/ */ L1450: String ONLINE_HELP_BASE_LINK = "online.help.base.link"; L1451: L1452: /** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/{version}/install/install.html */ L1453: String ONLINE_HELP_INSTALLATION = "online.help.installation"; L1454: L1455: /** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/eol.html */ L1456: String ONLINE_HELP_EOL = "online.help.eol";...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
UpdateLabelJob.java
L16:package org.codelibs.fess.job; L17: L18:import java.util.Map; L19:import java.util.Set; L20:import java.util.stream.Collectors; L21: L22:import org.apache.logging.log4j.LogManager; L23:import org.apache.logging.log4j.Logger; L24:import org.codelibs.core.lang.StringUtil; L25:import org.codelibs.fess.es.client.SearchEngineClient; L26:import org.codelibs.fess.helper.LabelTypeHelper; L27:import org.codelibs.fess.helper.LanguageHelper; L28:import org.codelibs.fess.mylasta.direction.FessConfig; L29:import o...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.5K bytes -
SetHashCodeTester.java
com.google.common.annotations.GwtIncompatible; L24:import com.google.common.annotations.J2ktIncompatible; L25:import com.google.common.collect.testing.features.CollectionFeature; L26:import com.google.common.collect.testing.features.CollectionSize; L27:import java.lang.reflect.Method; L28:import java.util.Collection; L29:import org.junit.Ignore; L30: L31:/** L32: * Tests {@link java.util.Set#hashCode}. L33: * L34: * @author George van den Driessche L35: */ L36:@GwtCompatible(emulated = true) L37:@Ignore // Affects...github.com/google/guava/guava-testlib/src/com/g...Wed Oct 30 16:15:19 UTC 2024 3K bytes -
LdapUser.java
L16:package org.codelibs.fess.ldap; L17: L18:import static org.codelibs.core.stream.StreamUtil.stream; L19: L20:import java.util.Arrays; L21:import java.util.Hashtable; L22: L23:import org.apache.commons.lang3.ArrayUtils; L24:import org.codelibs.core.lang.StringUtil; L25:import org.codelibs.fess.entity.FessUser; L26:import org.codelibs.fess.mylasta.action.FessUserBean; L27:import org.codelibs.fess.mylasta.direction.FessConfig; L28:import org.codelibs.fess.util.ComponentUtil; L29:import org.dbflute....github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.7K bytes -
MultisetCountTester.java
com.google.common.annotations.J2ktIncompatible; L30:import com.google.common.collect.testing.WrongType; L31:import com.google.common.collect.testing.features.CollectionFeature; L32:import com.google.common.collect.testing.features.CollectionSize; L33:import java.lang.reflect.Method; L34:import java.util.List; L35:import org.junit.Ignore; L36: L37:/** L38: * Tests for {@code Multiset#count}. L39: * L40: * @author Jared Levy L41: */ L42:@GwtCompatible(emulated = true) L43:@Ignore // Affects only Android test runner,...github.com/google/guava/android/guava-testlib/s...Wed Oct 30 16:15:19 UTC 2024 3.5K bytes -
CollectionSpliteratorTester.java
com.google.common.collect.testing.Helpers; L30:import com.google.common.collect.testing.SpliteratorTester; L31:import com.google.common.collect.testing.features.CollectionFeature; L32:import com.google.common.collect.testing.features.CollectionSize; L33:import java.lang.reflect.Method; L34:import java.util.Spliterator; L35:import org.junit.Ignore; L36: L37:/** L38: * A generic JUnit test which tests {@code spliterator} operations on a collection. Can't be invoked L39: * directly; please see {@link com.google.comm...github.com/google/guava/android/guava-testlib/s...Thu Oct 31 14:51:04 UTC 2024 3.9K bytes -
PairedStatsAccumulator.java
L12: * the License. L13: */ L14: L15:package com.google.common.math; L16: L17:import static com.google.common.base.Preconditions.checkState; L18:import static com.google.common.primitives.Doubles.isFinite; L19:import static java.lang.Double.NaN; L20:import static java.lang.Double.isNaN; L21: L22:import com.google.common.annotations.GwtIncompatible; L23:import com.google.common.annotations.J2ktIncompatible; L24:import com.google.common.primitives.Doubles; L25: L26:/** L27: * A mutable object which...github.com/google/guava/guava/src/com/google/co...Fri May 12 17:02:53 UTC 2023 10.3K bytes -
QuantilesTest.java
static com.google.common.math.Quantiles.quartiles; L22:import static com.google.common.truth.Truth.assertThat; L23:import static com.google.common.truth.Truth.assertWithMessage; L24:import static java.lang.Double.NEGATIVE_INFINITY; L25:import static java.lang.Double.NaN; L26:import static java.lang.Double.POSITIVE_INFINITY; L27:import static java.math.RoundingMode.CEILING; L28:import static java.math.RoundingMode.FLOOR; L29:import static java.math.RoundingMode.UNNECESSARY; L30:import static org....github.com/google/guava/android/guava-tests/tes...Wed Sep 06 17:04:31 UTC 2023 29.7K bytes