Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 835 for Gang (0.02 sec)

  1. Striped.java

    ier; L25:import com.google.common.collect.ImmutableList; L26:import com.google.common.collect.MapMaker; L27:import com.google.common.math.IntMath; L28:import com.google.common.primitives.Ints; L29:import java.lang.ref.Reference; L30:import java.lang.ref.ReferenceQueue; L31:import java.lang.ref.WeakReference; L32:import java.math.RoundingMode; L33:import java.util.Arrays; L34:import java.util.Collections; L35:import java.util.List; L36:import java.util.concurrent.ConcurrentMap; L37:import java.ut...
    github.com/google/guava/guava/src/com/google/co...
    Wed Jun 26 12:58:35 UTC 2024
      20.6K bytes
  2. AbstractConfigHelper.java

    implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.helper; L17: L18:import org.codelibs.core.concurrent.CommonPoolUtil; L19:import org.codelibs.core.lang.ThreadUtil; L20: L21:public abstract class AbstractConfigHelper { L22: L23: protected long reloadInterval = 1000L; L24: L25: public void update() { L26: CommonPoolUtil.execute(this::load); L27: } L28: L29: protected void waitForNext()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.2K bytes
  3. ScoreBooster.java

    org.codelibs.fess.score; L17: L18:import java.util.Arrays; L19:import java.util.Map; L20:import java.util.function.Function; 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.mylasta.direction.FessConfig; L27:import org.codelibs.fess.util.ComponentUtil; L28:import org.opensearch.action.bulk.BulkRequestBuilder; L29:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      5K bytes
  4. ListenableFutureTask.java

    CONDITIONS OF ANY KIND, either express L11: * or implied. See the License for the specific language governing permissions and limitations under L12: * the License. L13: */ L14: L15:package com.google.common.util.concurrent; L16: L17:import static java.lang.Math.min; L18:import static java.util.concurrent.TimeUnit.NANOSECONDS; L19: L20:import com.google.common.annotations.GwtIncompatible; L21:import com.google.common.annotations.J2ktIncompatible; L22:import com.google.errorprone.annotations.CanIgnoreReturnValue;...
    github.com/google/guava/guava/src/com/google/co...
    Tue Apr 04 09:45:04 UTC 2023
      4.3K bytes
  5. BoostDocumentRuleService.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.BoostDocPager; L24:import org.codelibs.fess.es.config.cbean.BoostDocumentRuleCB; L25:import org.codelibs.fess.es.config.exbhv.BoostDocumentRuleBhv; L26:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.3K bytes
  6. Interners.java

    this.strong = true; L58: return this; L59: } L60: L61: /** L62: * Instructs the {@link InternerBuilder} to build a weak interner. L63: * L64: * @see Interners#newWeakInterner() L65: */ L66: @GwtIncompatible("java.lang.ref.WeakReference") L67: public InternerBuilder weak() { L68: this.strong = false; L69: return this; L70: } L71: L72: /** L73: * Sets the concurrency level that will be used by the to-be-built {@link Interner}. L74: * L75:...
    github.com/google/guava/guava/src/com/google/co...
    Mon Mar 13 14:30:51 UTC 2023
      5.9K bytes
  7. MultisetIteratorTester.java

    com.google.common.annotations.GwtIncompatible; L26:import com.google.common.annotations.J2ktIncompatible; L27:import com.google.common.collect.testing.IteratorTester; L28:import com.google.common.collect.testing.features.CollectionFeature; L29:import java.lang.reflect.Method; L30:import java.util.Iterator; L31:import java.util.List; L32:import org.checkerframework.checker.nullness.qual.Nullable; L33:import org.junit.Ignore; L34: L35:/** L36: * Tester to make sure the {@code iterator().remove()} implementation...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      4.4K bytes
  8. CurlHelper.java

    L27:import javax.net.ssl.SSLContext; L28:import javax.net.ssl.SSLSocketFactory; L29:import javax.net.ssl.TrustManagerFactory; L30: L31:import org.apache.logging.log4j.LogManager; L32:import org.apache.logging.log4j.Logger; L33:import org.codelibs.core.lang.StringUtil; L34:import org.codelibs.curl.Curl.Method; L35:import org.codelibs.curl.CurlRequest; L36:import org.codelibs.fesen.client.curl.FesenRequest; L37:import org.codelibs.fesen.client.node.NodeManager; L38:import org.codelibs.fess.mylasta.direction.FessConfig;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.8K bytes
  9. MultimapKeysTester.java

    .features.MapFeature.ALLOWS_NULL_KEYS; L23:import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEY_QUERIES; L24:import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE; L25:import static java.lang.Math.max; L26: L27:import com.google.common.annotations.GwtCompatible; L28:import com.google.common.collect.Multimap; L29:import com.google.common.collect.Multiset; L30:import com.google.common.collect.Multisets; L31:import com.google.common.colle...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      4.2K bytes
  10. FreshValueGeneratorTest.java

    m; L64:import java.io.File; L65:import java.io.InputStream; L66:import java.io.OutputStream; L67:import java.io.Reader; L68:import java.io.StringReader; L69:import java.io.StringWriter; L70:import java.io.Writer; L71:import java.lang.reflect.Method; L72:import java.lang.reflect.Type; L73:import java.math.BigDecimal; L74:import java.math.BigInteger; L75:import java.nio.Buffer; L76:import java.nio.ByteBuffer; L77:import java.nio.CharBuffer; L78:import java.nio.DoubleBuffer; L79:import java.nio.FloatBuffer;...
    github.com/google/guava/android/guava-testlib/t...
    Mon Dec 04 17:37:03 UTC 2017
      17.2K bytes
Back to top