Search Options

Results per page
Sort
Preferred Languages
Advance

Results 661 - 670 of 915 for Gang (0.02 sec)

  1. ArrayTable.java

    llect; L18: L19:import static com.google.common.base.Preconditions.checkArgument; L20:import static com.google.common.base.Preconditions.checkElementIndex; L21:import static com.google.common.base.Preconditions.checkNotNull; L22:import static java.lang.System.arraycopy; L23:import static java.util.Collections.emptyMap; L24: L25:import com.google.common.annotations.GwtCompatible; L26:import com.google.common.annotations.GwtIncompatible; L27:import com.google.common.base.Objects; L28:import com.go...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      26.3K bytes
  2. StatsAccumulator.java

    L16: L17:import static com.google.common.base.Preconditions.checkState; L18:import static com.google.common.math.DoubleUtils.ensureNonNegative; L19:import static com.google.common.primitives.Doubles.isFinite; L20:import static java.lang.Double.NaN; L21:import static java.lang.Double.isNaN; L22: L23:import com.google.common.annotations.GwtIncompatible; L24:import com.google.common.annotations.J2ktIncompatible; L25:import java.util.Iterator; L26:import java.util.stream.DoubleStream; L27:import java.ut...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 23 16:45:30 UTC 2024
      15.8K bytes
  3. ParameterUtil.java

    permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.util; L17: L18:import java.util.HashMap; L19:import java.util.LinkedHashMap; L20:import java.util.Map; L21:import java.util.regex.Pattern; L22: L23:import org.codelibs.core.lang.StringUtil; L24:import org.codelibs.core.misc.Pair; L25:import org.codelibs.fess.es.config.exentity.CrawlingConfig.ConfigName; L26:import org.lastaflute.core.security.PrimaryCipher; L27: L28:public class ParameterUtil { L29: private static final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.5K bytes
  4. fess

    L96: fi L97: L98: # Make sure we don't use any predefined locale, as we check some exception message strings and rely on english language L99: # As those strings are created by the OS, they are dependent on the configured locale L100: LANG=en_US.UTF-8 L101: LC_ALL=en_US.UTF-8 L102: L103: export HOSTNAME=`hostname -s` L104: L105: cd "$FESS_HOME" L106: L107: if [ "x$daemonized" = "x" ]; then L108: fess_parms="$fess_parms -Dfess.foreground=yes" L109: exec "$JAVA"...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Sun Jan 15 06:32:15 UTC 2023
      5.4K bytes
  5. WebConfigTest.java

    and limitations under the License. L15: */ L16:package org.codelibs.fess.es.config.exentity; L17: L18:import java.util.Collections; L19:import java.util.HashMap; L20:import java.util.List; L21:import java.util.Map; L22: L23:import org.codelibs.core.lang.StringUtil; L24:import org.codelibs.fess.Constants; L25:import org.codelibs.fess.app.service.RequestHeaderService; L26:import org.codelibs.fess.app.service.WebAuthenticationService; L27:import org.codelibs.fess.crawler.client.CrawlerClientFactory;...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu May 09 09:48:04 UTC 2024
      7.6K bytes
  6. TestsForQueuesInJavaUtil.java

    java.util.Collections.emptySet; L20: L21:import com.google.common.annotations.GwtIncompatible; L22:import com.google.common.collect.testing.features.CollectionFeature; L23:import com.google.common.collect.testing.features.CollectionSize; L24:import java.lang.reflect.Method; L25:import java.util.ArrayDeque; L26:import java.util.Collection; L27:import java.util.LinkedList; L28:import java.util.PriorityQueue; L29:import java.util.Queue; L30:import java.util.concurrent.ArrayBlockingQueue; L31:import java....
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      7.6K bytes
  7. Platform.java

    JavaScript, we suppress the warning. L126: */ L127: @JsMethod L128: @SuppressWarnings("unusable-by-js") L129: private static native <E extends Enum<E>> @Nullable Class<E> getDeclaringClassOrNullForJ2cl( L130: E e) /*-{ L131: return e.@java.lang.Enum::getDeclaringClass()(); L132: }-*/; L133: L134: static int reduceIterationsIfGwt(int iterations) { L135: return iterations / 10; L136: } L137: L138: static int reduceExponentIfGwt(int exponent) { L139: return exponent / 2; L140: } L141:...
    github.com/google/guava/guava-gwt/src-super/com...
    Tue Aug 06 17:52:51 UTC 2024
      5K bytes
  8. StandardSystemProperty.java

    L19:import javax.annotation.CheckForNull; L20: L21:/** L22: * Represents a {@linkplain System#getProperties() standard system property}. L23: * L24: * @author Kurt Alfred Kluever L25: * @since 15.0 L26: */ L27:@J2ktIncompatible L28:@GwtIncompatible // java.lang.System#getProperty L29:@ElementTypesAreNonnullByDefault L30:public enum StandardSystemProperty { L31: L32: /** Java Runtime Environment version. */ L33: JAVA_VERSION("java.version"), L34: L35: /** Java Runtime Environment vendor. */ L36: JAVA_...
    github.com/google/guava/guava/src/com/google/co...
    Thu Feb 23 15:09:35 UTC 2023
      5K bytes
  9. ReflectionFreeAssertThrows.java

    com.google.common.collect.ImmutableMap; L25:import com.google.common.util.concurrent.ExecutionError; L26:import com.google.common.util.concurrent.UncheckedExecutionException; L27:import com.google.errorprone.annotations.CanIgnoreReturnValue; L28:import java.lang.reflect.InvocationTargetException; L29:import java.nio.charset.UnsupportedCharsetException; L30:import java.util.ConcurrentModificationException; L31:import java.util.NoSuchElementException; L32:import java.util.concurrent.CancellationException; L33:import...
    github.com/google/guava/guava-tests/test/com/go...
    Fri Oct 18 15:00:32 UTC 2024
      6.5K bytes
  10. ConcurrentHashMultisetBasherTest.java

    limitations under the License. L15: */ L16: L17:package com.google.common.collect; L18: L19:import static com.google.common.collect.Lists.newArrayListWithExpectedSize; L20:import static com.google.common.collect.Lists.transform; L21:import static java.lang.Math.min; L22: L23:import com.google.common.base.Function; L24:import com.google.common.primitives.Ints; L25:import java.util.List; L26:import java.util.Random; L27:import java.util.concurrent.Callable; L28:import java.util.concurrent.ConcurrentHashMap;...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      5.9K bytes
Back to top