Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 835 for Gang (0.02 sec)

  1. UncaughtExceptionHandlers.java

    L17:import static java.util.logging.Level.SEVERE; L18: L19:import com.google.common.annotations.GwtIncompatible; L20:import com.google.common.annotations.J2ktIncompatible; L21:import com.google.common.annotations.VisibleForTesting; L22:import java.lang.Thread.UncaughtExceptionHandler; L23:import java.util.Locale; L24: L25:/** L26: * Factories for {@link UncaughtExceptionHandler} instances. L27: * L28: * @author Gregory Kick L29: * @since 8.0 L30: */ L31:@J2ktIncompatible L32:@GwtIncompatible L33...
    github.com/google/guava/android/guava/src/com/g...
    Thu Dec 14 20:35:03 UTC 2023
      2.8K bytes
  2. DoubleUtilsTest.java

    ing.FINITE_DOUBLE_CANDIDATES; L21:import static com.google.common.math.MathTesting.POSITIVE_FINITE_DOUBLE_CANDIDATES; L22:import static com.google.common.truth.Truth.assertThat; L23:import static org.junit.Assert.assertThrows; L24: L25:import java.lang.reflect.Method; L26:import java.math.BigInteger; L27:import junit.framework.TestCase; L28: L29:/** L30: * Tests for {@link DoubleUtils}. L31: * L32: * @author Louis Wasserman L33: */ L34:public class DoubleUtilsTest extends TestCase { L35: @AndroidIncompatible...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Jul 03 18:10:55 UTC 2024
      3K bytes
  3. FessActionAdjustmentProvider.java

    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.mylasta.direction.sponsor; L17: L18:import org.codelibs.core.lang.StringUtil; L19:import org.codelibs.fess.util.ComponentUtil; L20:import org.dbflute.util.DfTypeUtil; L21:import org.lastaflute.web.path.ActionAdjustmentProvider; L22:import org.lastaflute.web.path.FormMappingOption; L23: L24:/** L25: * @author jflute...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2K bytes
  4. PackageSanityTests.java

    L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.eventbus; L18: L19:import com.google.common.testing.AbstractPackageSanityTests; L20:import java.lang.reflect.Method; L21:import org.checkerframework.checker.nullness.qual.Nullable; L22: L23:/** L24: * Basic sanity tests for the entire package. L25: * L26: * @author Ben Yu L27: */ L28: L29:public class PackageSanityTests extends AbstractPackageSanityTests...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Jul 02 18:21:29 UTC 2024
      1.9K bytes
  5. FuturesTransformTest.java

    com.google.common.util.concurrent; L18: L19:import static com.google.common.util.concurrent.Futures.transform; L20:import static com.google.common.util.concurrent.MoreExecutors.directExecutor; L21: L22:import com.google.common.base.Function; L23:import java.lang.reflect.UndeclaredThrowableException; L24: L25:/** L26: * Unit tests for {@link Futures#transform(ListenableFuture, Function, Executor)}. L27: * L28: * @author Nishant Thakkar L29: */ L30:public class FuturesTransformTest extends AbstractChainedLi...
    github.com/google/guava/guava-tests/test/com/go...
    Thu Jun 28 16:27:15 UTC 2018
      1.9K bytes
  6. FileTypeHelper.java

    lper; L17: L18:import java.util.LinkedHashMap; L19:import java.util.Map; L20: L21:import org.apache.commons.lang3.StringUtils; 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.core.stream.StreamUtil; L26:import org.codelibs.fess.util.ComponentUtil; L27: L28:import jakarta.annotation.PostConstruct; L29: L30:public class FileTypeHelper { L31: private static final Logger logger = LogM...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.4K bytes
  7. SubscriberExceptionContext.java

    the License for the specific language governing permissions and limitations under L12: * the License. L13: */ L14: L15:package com.google.common.eventbus; L16: L17:import static com.google.common.base.Preconditions.checkNotNull; L18: L19:import java.lang.reflect.Method; L20: L21:/** L22: * Context for an exception thrown by a subscriber. L23: * L24: * @since 16.0 L25: */ L26:@ElementTypesAreNonnullByDefault L27:public class SubscriberExceptionContext { L28: private final EventBus eventBus; L29: private...
    github.com/google/guava/android/guava/src/com/g...
    Thu Apr 22 13:05:46 UTC 2021
      2.2K bytes
  8. TypeTokenTest.java

    com.google.errorprone.annotations.CanIgnoreReturnValue; L33:import java.io.Serializable; L34:import java.lang.reflect.Constructor; L35:import java.lang.reflect.Field; L36:import java.lang.reflect.GenericArrayType; L37:import java.lang.reflect.Method; L38:import java.lang.reflect.ParameterizedType; L39:import java.lang.reflect.Type; L40:import java.lang.reflect.TypeVariable; L41:import java.lang.reflect.WildcardType; L42:import java.util.ArrayList; L43:import java.util.Collection; L44:import java.util.Collections;...
    github.com/google/guava/guava-tests/test/com/go...
    Mon Oct 21 21:13:09 UTC 2024
      89.1K bytes
  9. SuggestCreator.java

    License. L15: */ L16:package org.codelibs.fess.exec; L17: L18:import java.io.File; L19:import java.lang.management.ManagementFactory; L20:import java.time.LocalDateTime; L21:import java.util.concurrent.CountDownLatch; L22:import java.util.concurrent.atomic.AtomicInteger; 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.core.misc.DynamicProperties; L28:import org.codelibs.core.timer.TimeoutManager;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      10K bytes
  10. Utf8.java

    language governing permissions and limitations under L12: * the License. L13: */ L14: L15:package com.google.common.base; L16: L17:import static com.google.common.base.Preconditions.checkPositionIndexes; L18:import static java.lang.Character.MAX_SURROGATE; L19:import static java.lang.Character.MIN_SURROGATE; L20: L21:import com.google.common.annotations.GwtCompatible; L22: L23:/** L24: * Low-level, high-performance utility methods related to the {@linkplain Charsets#UTF_8 UTF-8} L25: * character encoding....
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 17 13:00:28 UTC 2024
      7K bytes
Back to top