Search Options

Results per page
Sort
Preferred Languages
Advance

Results 451 - 460 of 835 for Gang (0.03 sec)

  1. ThreadFactoryBuilderTest.java

    L15: */ L16: L17:package com.google.common.util.concurrent; L18: L19:import static com.google.common.truth.Truth.assertThat; L20:import static org.junit.Assert.assertThrows; L21: L22:import com.google.common.testing.NullPointerTester; L23:import java.lang.Thread.UncaughtExceptionHandler; L24:import java.util.Locale; L25:import java.util.concurrent.Executors; L26:import java.util.concurrent.ThreadFactory; L27:import junit.framework.TestCase; L28: L29:/** L30: * Tests for ThreadFactoryBuilder. L31: *...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Sep 06 17:04:31 UTC 2023
      7.5K bytes
  2. CustomSizeValidator.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.validation; L17: L18:import org.codelibs.core.lang.StringUtil; L19:import org.codelibs.fess.mylasta.direction.FessConfig; L20:import org.codelibs.fess.util.ComponentUtil; L21:import org.hibernate.validator.constraintvalidation.HibernateConstraintValidatorContext; L22: L23:import jakarta.validation...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.8K bytes
  3. CorsFilter.java

    permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.filter; L17: L18:import java.io.IOException; L19: L20:import org.apache.logging.log4j.LogManager; L21:import org.apache.logging.log4j.Logger; L22:import org.codelibs.core.lang.StringUtil; L23:import org.codelibs.fess.cors.CorsHandler; L24:import org.codelibs.fess.cors.CorsHandlerFactory; L25:import org.codelibs.fess.util.ComponentUtil; L26: L27:import jakarta.servlet.Filter; L28:import jakarta.servlet.FilterChain; L29:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.6K bytes
  4. settings.gradle.kts

    roid") L66: include(":android-test") L67: include(":android-test-app") L68:} L69: L70:enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") L71: L72:/** L73: * Avoid a crash in IntelliJ triggered by Android submodules. L74: * L75: * ``` L76: * java.lang.AssertionError: Can't find built-in class kotlin.Cloneable L77: * at org.jetbrains.kotlin.builtins.KotlinBuiltIns.getBuiltInClassByFqName(KotlinBuiltIns.java:217) L78: * at org.jetbrains.kotlin.builtins.jvm.JavaToKotlinClassMapper.mapJavaToKot...
    github.com/square/okhttp/settings.gradle.kts
    Sun Apr 14 14:24:05 UTC 2024
      2.6K bytes
  5. TestMapEntrySetGenerator.java

    CONDITIONS OF ANY KIND, either express or implied. L13: * See the License for the specific language governing permissions and L14: * limitations under the License. L15: */ L16: L17:package com.google.common.collect.testing; L18: L19:import static java.lang.System.arraycopy; L20: L21:import com.google.common.annotations.GwtCompatible; L22:import java.util.List; L23:import java.util.Map; L24:import java.util.Map.Entry; L25:import java.util.Set; L26:import org.checkerframework.checker.nullness.qual.Nullable;...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      2.2K bytes
  6. HashingTest.java

    L28:import com.google.common.primitives.Ints; L29:import com.google.common.testing.EqualsTester; L30:import com.google.common.testing.NullPointerTester; L31:import com.google.common.util.concurrent.AtomicLongMap; L32:import java.lang.reflect.Method; L33:import java.lang.reflect.Modifier; L34:import java.nio.ByteBuffer; L35:import java.util.Collections; L36:import java.util.List; L37:import java.util.Locale; L38:import java.util.Random; L39:import junit.framework.TestCase; L40: L41:/** L42: * Unit...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Jul 09 17:40:09 UTC 2024
      26.3K bytes
  7. 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
  8. FessApiFailureHook.java

    java.io.StringWriter; L21:import java.util.UUID; L22:import java.util.function.Supplier; L23:import java.util.stream.Collectors; L24: L25:import org.apache.logging.log4j.LogManager; L26:import org.apache.logging.log4j.Logger; L27:import org.codelibs.core.lang.StringUtil; L28:import org.codelibs.fess.Constants; L29:import org.codelibs.fess.app.web.api.ApiResult; L30:import org.codelibs.fess.app.web.api.ApiResult.ApiErrorResponse; L31:import org.codelibs.fess.app.web.api.ApiResult.Status; L32:import org....
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.8K bytes
  9. Platform.java

    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.base; L16: L17:import com.google.common.annotations.GwtCompatible; L18:import java.lang.ref.WeakReference; L19:import java.util.Locale; L20:import java.util.ServiceConfigurationError; L21:import java.util.logging.Level; L22:import java.util.logging.Logger; L23:import java.util.regex.Pattern; L24:import javax.annotation.CheckForNull; L25:...
    github.com/google/guava/guava/src/com/google/co...
    Mon Apr 15 22:32:14 UTC 2024
      3.9K bytes
  10. 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
Back to top