- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 915 for Gang (0.01 sec)
-
Stats.java
bleUtils.ensureNonNegative; L21:import static com.google.common.math.StatsAccumulator.calculateNewMeanNonFinite; L22:import static com.google.common.primitives.Doubles.isFinite; L23:import static java.lang.Double.NaN; L24:import static java.lang.Double.doubleToLongBits; L25:import static java.lang.Double.isNaN; L26: L27:import com.google.common.annotations.GwtIncompatible; L28:import com.google.common.annotations.J2ktIncompatible; L29:import com.google.common.base.MoreObjects; L30:import com.goo...github.com/google/guava/guava/src/com/google/co...Wed Oct 23 16:45:30 UTC 2024 24.9K bytes -
pom.xml
L1109: <artifactId>ingest-user-agent</artifactId> L1110: </exclusion> L1111: <exclusion> L1112: <groupId>org.opensearch.plugin</groupId> L1113: <artifactId>lang-mustache-client</artifactId> L1114: </exclusion> L1115: <exclusion> L1116: <groupId>org.opensearch.plugin</groupId> L1117: <artifactId>lang-painless</artifactId> L1118: </exclusion> L1119: <exclusion> L1120: <groupId>org.opensearch.plugin</groupId> L1121: <artifactId>parent-join-client</artifactId>...github.com/codelibs/fess/pom.xmlSat Oct 26 02:16:03 UTC 2024 49.1K bytes -
pom.xml
consider arranging things so that only the tests we know need this would get L497: the add-opens. Right now that doesn't seem worth the effort, though. L498: --> L499: <test.add.opens> L500: --add-opens java.base/java.lang=ALL-UNNAMED L501: --add-opens java.base/java.util=ALL-UNNAMED L502: --add-opens java.base/sun.security.jca=ALL-UNNAMED L503: </test.add.opens> L504: </properties> L505: </profile> L506: <profile> L507: <id>...github.com/google/guava/android/pom.xmlThu Oct 31 14:51:04 UTC 2024 21K bytes -
pom.xml
consider arranging things so that only the tests we know need this would get L492: the add-opens. Right now that doesn't seem worth the effort, though. L493: --> L494: <test.add.opens> L495: --add-opens java.base/java.lang=ALL-UNNAMED L496: --add-opens java.base/java.util=ALL-UNNAMED L497: --add-opens java.base/sun.security.jca=ALL-UNNAMED L498: </test.add.opens> L499: </properties> L500: </profile> L501: <profile> L502: <id>...github.com/google/guava/pom.xmlThu Oct 31 14:51:04 UTC 2024 20.6K bytes -
AdminUserAction.java
java.util.HashMap; L20:import java.util.Map; L21:import java.util.function.Consumer; L22: L23:import org.apache.commons.lang3.ArrayUtils; 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.annotation.Secured; L29:import org.codelibs.fess.app.pager.UserPager; L30:import org.codelibs.fess.app.service.GroupService; L31:import org.codelibs.fess.app.service.RoleService;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.9K bytes -
-UtilJvm.kt
L285:internal fun ServerSocket.closeQuietly() { L286: try { L287: close() L288: } catch (rethrown: RuntimeException) { L289: throw rethrown L290: } catch (_: Exception) { L291: } L292:} L293: L294:internal fun Long.toHexString(): String = java.lang.Long.toHexString(this) L295: L296:internal fun Int.toHexString(): String = Integer.toHexString(this) L297: L298:@Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN", "NOTHING_TO_INLINE") L299:internal inline fun Any.wait() = (this as Object).wait() L300: L...github.com/square/okhttp/okhttp/src/main/kotlin...Mon May 13 13:42:37 UTC 2024 10.7K bytes -
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/android/guava-tests/tes...Mon Oct 21 21:13:09 UTC 2024 89.1K bytes -
TraversalUtil.java
rrentMap; L31:import java.util.jar.JarFile; L32:import java.util.zip.ZipEntry; L33:import java.util.zip.ZipInputStream; L34: L35:import org.codelibs.core.jar.JarFileUtil; L36:import org.codelibs.core.lang.ClassLoaderUtil; L37:import org.codelibs.core.lang.ClassUtil; L38:import org.codelibs.core.lang.StringUtil; L39:import org.codelibs.core.log.Logger; L40:import org.codelibs.core.net.URLUtil; L41:import org.codelibs.core.zip.ZipFileUtil; L42:import org.codelibs.core.zip.ZipInputStreamUtil; L43: L44:/**...github.com/codelibs/corelib/src/main/java/org/c...Thu Mar 07 01:59:08 UTC 2024 19.5K bytes -
WebAuthentication.java
org.apache.http.impl.auth.BasicScheme; L27:import org.apache.http.impl.auth.DigestScheme; L28:import org.apache.http.impl.auth.NTLMScheme; L29:import org.apache.logging.log4j.LogManager; L30:import org.apache.logging.log4j.Logger; L31:import org.codelibs.core.lang.StringUtil; L32:import org.codelibs.fess.Constants; L33:import org.codelibs.fess.app.service.WebConfigService; L34:import org.codelibs.fess.crawler.client.http.Authentication; L35:import org.codelibs.fess.crawler.client.http.form.FormScheme; L36:import...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 5.8K bytes -
IntervalControlHelper.java
language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.helper; L17: L18:import java.util.ArrayList; L19:import java.util.Calendar; L20:import java.util.List; L21: L22:import org.codelibs.core.lang.ThreadUtil; L23:import org.codelibs.fess.exception.FessSystemException; L24:import org.codelibs.fess.util.ComponentUtil; L25: L26:public class IntervalControlHelper { L27: L28: protected volatile boolean crawlerRunning = true; L29: L30: protected...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 5.8K bytes