- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for sambil (0.03 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Huffman.kt
sink: BufferedSink, ) { var accumulator = 0L var accumulatorBitCount = 0 for (i in 0 until source.size) { val symbol = source[i] and 0xff val code = CODES[symbol] val codeBitCount = CODE_BIT_COUNTS[symbol].toInt() accumulator = (accumulator shl codeBitCount) or code.toLong() accumulatorBitCount += codeBitCount while (accumulatorBitCount >= 8) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
import jakarta.servlet.http.HttpSession; /** * Authenticator for SAML. */ public class SamlAuthenticator implements SsoAuthenticator { /** * Constructor. */ public SamlAuthenticator() { super(); } private static final Logger logger = LogManager.getLogger(SamlAuthenticator.class); /** * The prefix for SAML properties. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger(); } /** * Gets the maximum size for symbol terms from configuration. * * @return the maximum symbol term size */ protected int getMaxSymbolTermSize() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
// Emoji and special symbols - quotes preserved value = "\"🚀rocket\",\"@symbol\",\"#hashtag\""; result = KuromojiCSVUtil.parse(value); assertEquals(3, result.length); assertEquals("🚀rocket", result[0]); assertEquals("@symbol", result[1]); assertEquals("\"#hashtag\"", result[2]); } public void test_parse_single_field() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
// Test full integration scenarios public void test_fullScenario_ssoEnabled() { currentSsoType = "saml"; final LoginCredential expectedCredential = new TestLoginCredential("samluser"); final ActionResponse expectedResponse = HtmlResponse.asEmptyBody(); final String expectedLogoutUrl = "https://saml.example.com/logout"; testAuthenticator.setLoginCredential(expectedCredential);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/OsddHelperTest.java
@Override public String getOsddLinkEnabled() { return "auto"; } @Override public String getSsoType() { return "saml"; } }); final OsddHelper osddHelper = new OsddHelper(); osddHelper.setOsddPath("osdd/osdd.xml"); osddHelper.init(); assertFalse(osddHelper.hasOpenSearchFile());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String NTLM = "NTLM"; /** Form-based authentication type identifier. */ public static final String FORM = "FORM"; /** Samba authentication type identifier. */ public static final String SAMBA = "SAMBA"; /** FTP authentication type identifier. */ public static final String FTP = "FTP"; // ============================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
+ " " + fileAuth.getUsername()); } if (Constants.SAMBA.equals(fileAuth.getProtocolScheme())) { final SmbAuthentication smbAuth = new SmbAuthentication(); final Map<String, String> map = ParameterUtil.parse(fileAuth.getParameters());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 03 09:24:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/resources/fess_label_it.properties
labels.index_lang=Lingua preferita labels.index_sort=Ordina labels.index_num=Numero di risultati labels.logout_title=Esci labels.logout=Esci labels.do_you_want_to_logout=Vuoi uscire? labels.logout_button=Esci labels.profile=Cambia password labels.administration=Amministrazione labels.profile_button=Impostazioni labels.profile.title= Impostazioni labels.profile.update= Aggiorna labels.profile.back= Indietro
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
* @return The view helper. */ public static ViewHelper getViewHelper() { return getComponent(VIEW_HELPER); } /** * Gets the Samba helper component. * @return The Samba helper. */ public static SambaHelper getSambaHelper() { return getComponent(SAMBA_HELPER); } /** * Gets the query helper component.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0)