- Sort Score
- Num 10 results
- Language All
Results 971 - 980 of 2,219 for check (0.03 seconds)
-
src/test/java/org/codelibs/fess/chat/ChatPhaseCallbackTest.java
String[] phases = { ChatPhaseCallback.PHASE_INTENT, ChatPhaseCallback.PHASE_SEARCH, ChatPhaseCallback.PHASE_EVALUATE, ChatPhaseCallback.PHASE_FETCH, ChatPhaseCallback.PHASE_ANSWER }; // Check all phases are unique for (int i = 0; i < phases.length; i++) { for (int j = i + 1; j < phases.length; j++) { assertFalse("Phase constants should be unique", phases[i].equals(phases[j]));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 7.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/QualifiedVersion.java
int number = Integer.parseInt(matcher.group(2)); return new Qualifier(QualifierLevel.valueOf(level), number); } else { // This shouldn't happen - we check the format before this is called throw new IllegalArgumentException("Invalid qualifier [" + qualifier + "] passed"); } } public String toString() {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 06:25:29 GMT 2021 - 5.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
} @Test public void test_exceptionInheritance() { // Test exception inheritance hierarchy CommandExecutionException exception = new CommandExecutionException("Test"); // Check inheritance chain assertTrue(exception instanceof CommandExecutionException); assertTrue(exception instanceof FessSystemException); assertTrue(exception instanceof RuntimeException);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.4K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractService.java
// even check the guard. I don't think we care too much about this use case but it could lead // to a confusing error message. throw new TimeoutException( "Timed out waiting for " + this + " to reach a terminal state. " + "Current state: " + state()); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 19 21:24:11 GMT 2025 - 20.3K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven4ScopeManagerConfiguration.java
DependencyScope.SYSTEM.id(), DependencyScope.SYSTEM.isTransitive(), all(), MavenArtifactProperties.LOCAL_PATH)); // == sanity check if (result.size() != org.apache.maven.api.DependencyScope.values().length - 1) { // sans "undefined" throw new IllegalStateException("Maven4 API dependency scope mismatch"); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 9.2K bytes - Click Count (0) -
docs/ko/docs/tutorial/security/get-current-user.md
`current_user`의 타입을 Pydantic 모델 `User`로 선언한다는 점에 주목하세요. 이는 함수 내부에서 자동 완성과 타입 체크에 도움을 줍니다. /// tip | 팁 요청 본문도 Pydantic 모델로 선언된다는 것을 기억하실지도 모릅니다. 여기서 **FastAPI**는 `Depends`를 사용하고 있기 때문에 혼동하지 않습니다. /// /// check | 확인 이 의존성 시스템이 설계된 방식은 모두 `User` 모델을 반환하는 서로 다른 의존성(서로 다른 "dependables")을 가질 수 있도록 합니다. 해당 타입의 데이터를 반환할 수 있는 의존성이 하나만 있어야 하는 것으로 제한되지 않습니다. /// ## 다른 모델 { #other-models }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 4.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
} return result.replaceAll("\\s+", " "); } /** * Returns the supported language for a given language. * * @param lang The language to check. * @return The supported language, or null if not supported. */ protected String getSupportedLanguage(final String lang) { if (StringUtil.isBlank(lang)) { return null; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 6.9K bytes - Click Count (0) -
android/guava/src/com/google/common/io/Closeables.java
* - It might be preferable to be consistent with the JDK precedent (which they stuck with even * for "UncheckedIOException"). * * - If we change the name, some of our callers break because our Android Lint ParameterName check * doesn't make the exception for com.google.common that internal Error Prone does: b/386402967. */ @SuppressWarnings("IdentifierName") public static void close(@Nullable Closeable closeable, boolean swallowIOException)
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 5.1K bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/JvmConfigParser.java
// Print clear error and exit with error code to prevent Maven from running System.err.println("ERROR: Failed to read .mvn/jvm.config: " + e.getMessage()); System.err.println("Please check file permissions and syntax."); System.err.flush(); System.exit(1); } } /** * Parse jvm.config file and return formatted arguments. * Package-private for testing.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 10 16:40:06 GMT 2025 - 6.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return "errors.password_is_blacklisted"; } return StringUtil.EMPTY; } /** * Checks if the password contains at least one uppercase letter. * * @param password the password to check * @return true if the password contains an uppercase letter, false otherwise */ protected boolean containsUppercase(final String password) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0)