Search Options

Results per page
Sort
Preferred Languages
Advance

Results 591 - 600 of 915 for Gang (0.02 sec)

  1. ArrayBasedUnicodeEscaper.java

    the License for the specific language governing permissions and limitations under L12: * the License. L13: */ L14: L15:package com.google.common.escape; L16: L17:import static com.google.common.base.Preconditions.checkNotNull; L18:import static java.lang.Math.min; L19: L20:import com.google.common.annotations.GwtCompatible; L21:import java.util.Map; L22:import javax.annotation.CheckForNull; L23:import org.checkerframework.checker.nullness.qual.Nullable; L24: L25:/** L26: * A {@link UnicodeEscaper}...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:26:48 UTC 2024
      8.6K bytes
  2. AtomicDoubleTest.java

    k-jsr166e/AtomicDoubleTest.java?revision=1.8 L11: * (Modified to adapt to guava coding conventions) L12: */ L13: L14:package com.google.common.util.concurrent; L15: L16:import static com.google.common.truth.Truth.assertThat; L17:import static java.lang.Math.max; L18: L19:/** Unit test for {@link AtomicDouble}. */ L20:public class AtomicDoubleTest extends JSR166TestCase { L21: L22: private static final double[] VALUES = { L23: Double.NEGATIVE_INFINITY, L24: -Double.MAX_VALUE, L25: (double)...
    github.com/google/guava/guava-tests/test/com/go...
    Thu Oct 17 02:42:09 UTC 2024
      10.3K bytes
  3. Serialization.java

    L18: L19:import com.google.common.annotations.GwtIncompatible; L20:import com.google.common.annotations.J2ktIncompatible; L21:import java.io.IOException; L22:import java.io.ObjectInputStream; L23:import java.io.ObjectOutputStream; L24:import java.lang.reflect.Field; L25:import java.util.Collection; L26:import java.util.Map; L27:import org.checkerframework.checker.nullness.qual.Nullable; L28: L29:/** L30: * Provides static methods for serializing collection classes. L31: * L32: * <p>This class assists...
    github.com/google/guava/guava/src/com/google/co...
    Mon Mar 06 16:06:58 UTC 2023
      8.5K bytes
  4. WebConfigService.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.WebConfigPager; L24:import org.codelibs.fess.es.config.cbean.WebConfigCB; L25:import org.codelibs.fess.es.config.exbhv.RequestHeaderBhv; L26:import org.code...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.7K bytes
  5. MultisetElementSetTester.java

    com.google.common.annotations.GwtIncompatible; L30:import com.google.common.annotations.J2ktIncompatible; 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 java.util.Set; L36:import org.junit.Ignore; L37: L38:/** L39: * Tests for {@code Multiset.elementSet()} not covered by the derived {@code SetTestSuiteBuilder}. L40: * L41: * @author Louis Wasserman...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      4.2K bytes
  6. ShortConversionUtil.java

    express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.core.convert; L17: L18:import java.text.SimpleDateFormat; L19: L20:import org.codelibs.core.lang.StringUtil; L21:import org.codelibs.core.text.DecimalFormatUtil; L22: L23:/** L24: * {@link Short}用の変換ユーティリティです。 L25: * L26: * @author higa L27: */ L28:public abstract class ShortConversionUtil { L29: L30: /** L31: * {@link Short}に変換します。 L32:...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      3.8K bytes
  7. IndexUpdater.java

    java.util.ArrayList; L19:import java.util.List; L20:import java.util.Map; L21:import java.util.function.Consumer; L22: L23:import org.apache.logging.log4j.LogManager; L24:import org.apache.logging.log4j.Logger; L25:import org.codelibs.core.lang.StringUtil; L26:import org.codelibs.core.lang.ThreadUtil; L27:import org.codelibs.fess.Constants; L28:import org.codelibs.fess.crawler.Crawler; L29:import org.codelibs.fess.crawler.entity.AccessResult; L30:import org.codelibs.fess.crawler.entity.AccessResultData; L31:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24.2K bytes
  8. DateConversionUtil.java

    MEDIUM; L21:import static java.text.DateFormat.SHORT; L22:import static java.text.DateFormat.getDateInstance; L23:import static org.codelibs.core.collection.MultiIterator.iterable; L24:import static org.codelibs.core.lang.StringUtil.isEmpty; L25:import static org.codelibs.core.lang.StringUtil.isNotEmpty; L26:import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; L27: L28:import java.text.DateFormat; L29:import java.text.ParsePosition; L30:import java.text.SimpleDateFormat; L31:import...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      21.5K bytes
  9. FessBoot.java

    org.apache.tomcat.util.http.CookieProcessorBase; L31:import org.apache.tomcat.util.http.Rfc6265CookieProcessor; L32:import org.apache.tomcat.util.net.SSLHostConfig; L33:import org.apache.tomcat.util.net.SSLHostConfigCertificate; L34:import org.codelibs.core.lang.StringUtil; L35:import org.codelibs.fess.tomcat.valve.SuppressErrorReportValve; L36:import org.codelibs.fess.tomcat.webresources.FessWebResourceRoot; L37:import org.dbflute.tomcat.TomcatBoot; L38:import org.dbflute.tomcat.logging.BootLogger; L39:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      8K bytes
  10. ApiAdminWebconfigAction.java

    dmin.webconfig.AdminWebconfigAction.getWebConfig; L20: L21:import java.util.List; L22:import java.util.stream.Collectors; L23: L24:import org.apache.logging.log4j.LogManager; L25:import org.apache.logging.log4j.Logger; L26:import org.codelibs.core.lang.StringUtil; L27:import org.codelibs.fess.Constants; L28:import org.codelibs.fess.app.pager.WebConfigPager; L29:import org.codelibs.fess.app.service.WebConfigService; L30:import org.codelibs.fess.app.web.CrudMode; L31:import org.codelibs.fess.app.web.api.ApiResult;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7K bytes
Back to top