- Sort Score
- Result 10 results
- Languages All
Results 4581 - 4590 of 4,618 for alse (0.03 sec)
-
src/main/resources/suggest_indices/_cloud/suggest_analyzer.json
"auto_expand_replicas": "0-1" }, "analysis" : { "tokenizer" : { "fess_japanese_normal" : { "type" : "kuromoji_tokenizer", "mode" : "normal", "discard_punctuation" : "false" }, "fess_korean_normal": { "type": "nori_tokenizer", "decompound_mode": "mixed", "user_dictionary_rules": ["덕후", "버카충", "낄끼빠빠" ] } }, "analyzer" : {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Feb 27 09:26:16 UTC 2021 - 57.4K bytes - Viewed (1) -
src/main/resources/suggest_indices/suggest_analyzer.json
"auto_expand_replicas": "0-1" }, "analysis" : { "tokenizer" : { "fess_japanese_normal" : { "type" : "fess_japanese_tokenizer", "mode" : "normal", "discard_punctuation" : "false" }, "fess_korean_normal": { "type": "fess_korean_tokenizer", "decompound_mode": "mixed", "user_dict_path": "${fess.dictionary.path}ko/nori.txt" } }, "analyzer" : {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 23 05:09:51 UTC 2019 - 57.7K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java
*/ @Deprecated(since = "4.0.0") public class MavenRepositorySystemSupplier implements Supplier<RepositorySystem> { private final AtomicBoolean closed = new AtomicBoolean(false); public MavenRepositorySystemSupplier() {} private void checkClosed() { if (closed.get()) { throw new IllegalStateException("Supplier is closed"); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.7K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
other widely used forms * Where there's a hierarchy in the types, list it via a parent * Highly specific magic matches get a high priority * General magic matches which could trigger a false-positive need a low one * The priority for containers normally need to be higher than for the things they contain, so they don't accidently get detected as what's in them
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Sep 21 06:46:43 UTC 2023 - 298.5K bytes - Viewed (0) -
docs/ko/docs/index.md
* **빠른 코드 작성**: 약 200%에서 300%까지 기능 개발 속도 증가. * * **적은 버그**: 사람(개발자)에 의한 에러 약 40% 감소. * * **직관적**: 훌륭한 편집기 지원. 모든 곳에서 <abbr title="also known as auto-complete, autocompletion, IntelliSense">자동완성</abbr>. 적은 디버깅 시간. * **쉬움**: 쉽게 사용하고 배우도록 설계. 적은 문서 읽기 시간. * **짧음**: 코드 중복 최소화. 각 매개변수 선언의 여러 기능. 적은 버그. * **견고함**: 준비된 프로덕션 용 코드를 얻으십시오. 자동 대화형 문서와 함께.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 16 16:50:01 UTC 2024 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/Network.java
* any, specified by {@code endpoints}). * * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the * endpoints are unordered and the network is directed; it simply returns {@code false}. This is * for consistency with {@link Graph#hasEdgeConnecting(EndpointPair)} and {@link * ValueGraph#hasEdgeConnecting(EndpointPair)}. * * @since 27.1 */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 21.1K bytes - Viewed (0) -
src/bytes/buffer_test.go
var buf Buffer s := "" for i := 0; i < 50; i++ { wlen := rand.Intn(len(testString)) if i%2 == 0 { s = fillString(t, "TestMixedReadsAndWrites (1)", &buf, s, 1, testString[0:wlen]) } else { s = fillBytes(t, "TestMixedReadsAndWrites (1)", &buf, s, 1, testBytes[0:wlen]) } rlen := rand.Intn(len(testString)) fub := make([]byte, rlen) n, _ := buf.Read(fub) s = s[n:] }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Sep 03 20:55:15 UTC 2024 - 18.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java
assertEquals("1997-01-08T22:48:59Z", extractData.getValues("dcterms:created")[0]); assertEquals("2012-05-18T22:50:00Z", extractData.getValues("dcterms:modified")[0]); assertEquals("false", extractData.getValues("protected")[0]); assertEquals("じょうたい", extractData.getValues("cp:contentStatus")[0]); assertEquals("たいとる", extractData.getValues("dc:title")[0]);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 30.5K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt
OkHttpClient.Builder() .addNetworkInterceptor( Interceptor { chain -> when { extraNetworkInterceptor != null -> extraNetworkInterceptor!!.intercept(chain) else -> chain.proceed(chain.request()) } }, ) .addNetworkInterceptor(networkInterceptor) .addInterceptor(applicationInterceptor) .sslSocketFactory(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 09:14:38 UTC 2024 - 37.6K bytes - Viewed (0) -
cmd/api-errors.go
case dns.ErrBucketConflict: apiErr = ErrBucketAlreadyExists default: if strings.Contains(err.Error(), "request declared a Content-Length") { apiErr = ErrIncompleteBody } else { apiErr = ErrInternalError } } return apiErr } var noError = APIError{} // toAPIError - Converts embedded errors. Convenience
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (0)