- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 420 for Basic (0.03 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
public int getDayForCleanup() { return 3; } }; ComponentUtil.register(fessConfig, FessConfig.class.getCanonicalName()); } // Test basic configuration properties public void test_domainTitle() { assertEquals("Fess", fessConfig.getDomainTitle()); } public void test_searchEngineType() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
sourceMap.put(field, value); } // =================================================================================== // Basic Override // ============== @Override protected String doBuildColumnString(String dm) { StringBuilder sb = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
s.identifier_authority = Arrays.copyOf(identAuth, 6); s.sub_authority = Arrays.copyOf(subs, subs.length); return s; } @Nested @DisplayName("Basic Constructor and Utility Tests") class BasicTests { @Test @DisplayName("Textual constructor happy path and toString consistency") void testTextualConstructorAndToString() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
<artifactId>logging-interceptor</artifactId> <version>2.6.0</version> </dependency> ``` Configure basic logging like this: ```java HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor(); loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BASIC); client.networkInterceptors().add(loggingInterceptor); ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
*/ public static final MediaType L24_AUDIO = createConstant(AUDIO_TYPE, "l24"); /** * Basic Audio, as defined by <a href="http://tools.ietf.org/html/rfc2046#section-4.3">RFC * 2046</a>. * * @since 20.0 */ public static final MediaType BASIC_AUDIO = createConstant(AUDIO_TYPE, "basic"); /** * Advanced Audio Coding. For more information, see <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
stopwordsFile.reload(null, is); } catch (IOException e) { throw new RuntimeException(e); } } // Test basic getters public void test_getType() { assertEquals("stopwords", stopwordsFile.getType()); } public void test_getPath() { assertEquals(testFile.getAbsolutePath(), stopwordsFile.getPath());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
docs/ja/docs/tutorial/security/index.md
* `apiKey`: アプリケーション固有のキーで、これらのものから取得できます。 * クエリパラメータ * ヘッダー * クッキー * `http`: 標準的なHTTP認証システムで、これらのものを含みます。 * `bearer`: ヘッダ `Authorization` の値が `Bearer ` で、トークンが含まれます。これはOAuth2から継承しています。 * HTTP Basic認証 * HTTP ダイジェスト認証など * `oauth2`: OAuth2のセキュリティ処理方法(「フロー」と呼ばれます)のすべて。 * これらのフローのいくつかは、OAuth 2.0認証プロバイダ(Google、Facebook、X (Twitter)、GitHubなど)を構築するのに適しています。 * `implicit` * `clientCredentials`Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5ContextTest.java
when(gssContext.getMech()).thenReturn(new Oid("1.2.3")); assertNull(ctx.searchSessionKey(new javax.security.auth.Subject())); } @Test @DisplayName("toString shows basic info when not established") void toString_notEstablished() throws Exception { when(gssContext.isEstablished()).thenReturn(false); String s = ctx.toString(); assertTrue(s.startsWith("KERB5["));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/resources/fess_label_nl.properties
labels.facet_filetype_properties=Eigenschappenbestand labels.facet_filetype_python=Python labels.facet_filetype_ruby=Ruby labels.facet_filetype_scala=Scala labels.facet_filetype_shell=Shellscript labels.facet_filetype_vb=Visual Basic labels.facet_filetype_others=Overig labels.facet_label_reset=Reset labels.searchoptions_all=Alles labels.searchoptions_score=Score labels.searchoptions_menu_sort=Sorteren labels.searchoptions_menu_num=Aantal
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 42.8K bytes - Viewed (1) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
} } /** * Check if a connection is unhealthy using comprehensive checks */ private boolean isConnectionUnhealthy(SmbTransportImpl transport) { try { // Basic disconnection check if (transport.isDisconnected()) { return true; } // Check if transport is failed if (transport.isFailed()) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0)