- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 915 for Gang (0.01 sec)
-
QueryContext.java
L21:import java.util.Collections; L22:import java.util.HashMap; L23:import java.util.HashSet; L24:import java.util.List; L25:import java.util.Map; L26:import java.util.Set; L27:import java.util.function.Consumer; L28: L29:import org.codelibs.core.lang.StringUtil; L30:import org.codelibs.fess.Constants; L31:import org.codelibs.fess.util.ComponentUtil; L32:import org.lastaflute.web.util.LaRequestUtil; L33:import org.opensearch.index.query.BoolQueryBuilder; L34:import org.opensearch.index.query.MatchAllQueryBuilder;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 5.8K bytes -
ListGenerators.java
for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.collect.testing.google; L18: L19:import static com.google.common.collect.Lists.charactersOf; L20:import static java.lang.System.arraycopy; L21:import static java.util.Arrays.asList; L22: L23:import com.google.common.annotations.GwtCompatible; L24:import com.google.common.collect.ImmutableList; L25:import com.google.common.collect.testing.TestCharacterListGenerator; L26:import...github.com/google/guava/android/guava-testlib/s...Wed Oct 30 16:15:19 UTC 2024 5K bytes -
ListAddAtIndexTester.java
ons.J2ktIncompatible; L30:import com.google.common.collect.testing.features.CollectionFeature; L31:import com.google.common.collect.testing.features.CollectionSize; L32:import com.google.common.collect.testing.features.ListFeature; L33:import java.lang.reflect.Method; L34:import java.util.ConcurrentModificationException; L35:import java.util.Iterator; L36:import org.junit.Ignore; L37: L38:/** L39: * A generic JUnit test which tests {@code add(int, Object)} operations on a list. Can't be invoked L40:...github.com/google/guava/android/guava-testlib/s...Wed Oct 30 16:15:19 UTC 2024 5.4K bytes -
UserInfoHelper.java
L15: */ L16:package org.codelibs.fess.helper; L17: L18:import java.util.ArrayList; L19:import java.util.List; L20:import java.util.Map; L21:import java.util.UUID; L22: L23:import org.codelibs.core.collection.LruHashMap; L24:import org.codelibs.core.lang.StringUtil; L25:import org.codelibs.fess.Constants; L26:import org.codelibs.fess.mylasta.direction.FessConfig; L27:import org.codelibs.fess.util.ComponentUtil; L28:import org.lastaflute.core.security.PrimaryCipher; L29:import org.lastaflute.web.lo...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.5K bytes -
PairedStats.java
com.google.common.base.Preconditions.checkArgument; L18:import static com.google.common.base.Preconditions.checkNotNull; L19:import static com.google.common.base.Preconditions.checkState; L20:import static java.lang.Double.NaN; L21:import static java.lang.Double.doubleToLongBits; L22:import static java.lang.Double.isNaN; L23: L24:import com.google.common.annotations.GwtIncompatible; L25:import com.google.common.annotations.J2ktIncompatible; L26:import com.google.common.base.MoreObjects; L27:import com.goo...github.com/google/guava/android/guava/src/com/g...Fri May 12 17:02:53 UTC 2023 12.6K bytes -
ScheduledJob.java
CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.es.config.exentity; L17: L18:import org.codelibs.core.lang.StringUtil; L19:import org.codelibs.fess.Constants; L20:import org.codelibs.fess.es.config.bsentity.BsScheduledJob; L21:import org.codelibs.fess.exception.JobNotFoundException; L22:import org.codelibs.fess.util.ComponentUtil; L23:import org.lastaf...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.1K bytes -
MimeTypeUtilTest.java
org.junit.Assert.assertEquals; L20:import static org.junit.Assert.assertNull; L21: L22:import java.net.URLConnection; L23: L24:import org.codelibs.core.exception.EmptyArgumentException; L25:import org.codelibs.core.io.ResourceUtil; L26:import org.codelibs.core.lang.ClassUtil; L27:import org.junit.Rule; L28:import org.junit.Test; L29:import org.junit.rules.ExpectedException; L30: L31:/** L32: * @author shot L33: */ L34:public class MimeTypeUtilTest { L35: L36: /** L37: * @see org.junit.rules.ExpectedException...github.com/codelibs/corelib/src/test/java/org/c...Thu Mar 07 01:59:08 UTC 2024 2.7K bytes -
ClassSanityTester.java
L42:import com.google.common.testing.RelationshipTester.ItemReporter; L43:import com.google.errorprone.annotations.CanIgnoreReturnValue; L44:import java.io.Serializable; L45:import java.lang.reflect.Constructor; L46:import java.lang.reflect.InvocationTargetException; L47:import java.lang.reflect.Method; L48:import java.lang.reflect.Modifier; L49:import java.util.Collection; L50:import java.util.List; L51:import java.util.Map.Entry; L52:import java.util.Set; L53:import javax.annotation.CheckForNull; L54:import...github.com/google/guava/android/guava-testlib/s...Tue Jul 23 14:18:12 UTC 2024 32.7K bytes -
ResourceUtil.java
java.io.File; L19:import java.io.FilenameFilter; L20:import java.nio.file.Files; L21:import java.nio.file.Path; L22:import java.nio.file.Paths; L23:import java.util.regex.Matcher; L24:import java.util.regex.Pattern; L25: L26:import org.codelibs.core.lang.StringUtil; L27:import org.codelibs.fess.Constants; L28:import org.codelibs.fess.mylasta.direction.FessConfig; L29:import org.dbflute.optional.OptionalEntity; L30:import org.lastaflute.web.util.LaServletContextUtil; L31: L32:import jakarta.servlet.ServletContext;...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 08:52:32 UTC 2024 7.5K bytes -
ExecJob.java
java.util.List; L25:import java.util.Properties; L26:import java.util.regex.Pattern; L27: L28:import org.apache.commons.io.FileUtils; L29:import org.apache.logging.log4j.LogManager; L30:import org.apache.logging.log4j.Logger; L31:import org.codelibs.core.lang.StringUtil; L32:import org.codelibs.core.timer.TimeoutManager; L33:import org.codelibs.core.timer.TimeoutTask; L34:import org.codelibs.fess.Constants; L35:import org.codelibs.fess.es.config.exentity.ScheduledJob; L36:import org.codelibs.fess.util.ComponentUtil;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 7.7K bytes