- Sort Score
- Result 10 results
- Languages All
Results 1621 - 1630 of 2,091 for station (0.1 sec)
-
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
* limitations under the License. */ package com.google.common.testing; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkNotNull; import static com.google.common.base.Throwables.throwIfUnchecked; import static com.google.common.testing.NullPointerTester.isNullable; import com.google.common.annotations.GwtIncompatible;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:18:12 UTC 2024 - 32.7K bytes - Viewed (0) -
cmd/metacache-entries.go
if other == nil { continue } if best == nil { best = other bestIdx = otherIdx continue } if path.Clean(best.name) == path.Clean(other.name) { // We may be in a situation where we have a directory and an object with the same name. // In that case we will drop the directory entry. // This should however not be confused with an object with a trailing slash.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0) -
docs/ko/docs/index.md
* HTTPX 및 `pytest`에 기반한 극히 쉬운 테스트 * **CORS** * **쿠키 세션** * ...기타 등등. ## 성능 독립된 TechEmpower 벤치마크에서 Uvicorn에서 작동하는 FastAPI 어플리케이션이 <a href="https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7" class="external-link" target="_blank">사용 가능한 가장 빠른 프레임워크 중 하나</a>로 Starlette와 Uvicorn(FastAPI에서 내부적으로 사용)에만 밑돌고 있습니다. (*)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 16 16:50:01 UTC 2024 - 19.4K bytes - Viewed (0) -
src/builtin/builtin.go
// if v is nil, len(v) is zero. // // For some arguments, such as a string literal or a simple array expression, the // result can be a constant. See the Go language specification's "Length and // capacity" section for details. func len(v Type) int // The cap built-in function returns the capacity of v, according to its type: // // Array: the number of elements in v (same as len(v)).
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Apr 11 20:22:45 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SystemUtil.java
import org.codelibs.fess.Constants; public class SystemUtil extends org.codelibs.core.lang.SystemUtil { private SystemUtil() { } @SuppressWarnings("deprecation") public static String getSearchEngineHttpAddress() { final String value = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS); if (value != null) { return value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class DataStoreException extends FessSystemException { private static final long serialVersionUID = 1L; public DataStoreException(final String message, final Throwable cause) { super(message, cause); } public DataStoreException(final String message) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/JobProcessingException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class JobProcessingException extends FessSystemException { private static final long serialVersionUID = 1L; public JobProcessingException(final Throwable e) { super(e); } public JobProcessingException(final String message, final Throwable e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryException.java
*/ package org.codelibs.fess.dict; import org.codelibs.fess.exception.FessSystemException; public class DictionaryException extends FessSystemException { private static final long serialVersionUID = 1L; public DictionaryException(final String message, final Throwable cause) { super(message, cause); } public DictionaryException(final String message) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ExtraObjectsMethodsForWeb.java
package com.google.common.base; import org.checkerframework.checker.nullness.qual.Nullable; /** Holder for extra methods of {@code Objects} only in web. */ public abstract class ExtraObjectsMethodsForWeb { public static boolean equal(@Nullable String a, @Nullable String b) { return a == b; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 07 01:40:05 UTC 2023 - 901 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java
// Definition // ========== private static final long serialVersionUID = 1L; protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.5K bytes - Viewed (0)