- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 3,018 for strana (0.03 sec)
-
src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsRoleCB.java
public RoleCB acceptPK(String id) { assertObjectNotNull("id", id); BsRoleCB cb = this; cb.query().docMeta().setId_Equal(id); return (RoleCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/internal.kt
internal fun parseCookie( currentTimeMillis: Long, url: HttpUrl, setCookie: String, ): Cookie? = Cookie.parse(currentTimeMillis, url, setCookie) internal fun cookieToString( cookie: Cookie, forObsoleteRfc2965: Boolean, ): String = cookie.toString(forObsoleteRfc2965) internal fun addHeaderLenient( builder: Headers.Builder, line: String, ): Headers.Builder = builder.addLenient(line) internal fun addHeaderLenient(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsAccessToken.java
/** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** expiredTime */ protected Long expiredTime; /** name */ protected String name; /** parameter_name */ protected String parameterName; /** permissions */ protected String[] permissions; /** token */ protected String token;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
assertTrue(rateLimiter.checkAttempt("user1", "192.168.1.1"), "After success should be allowed"); } @Test public void testAccountLockout() throws Exception { String username = "testuser"; String ip = "192.168.1.2"; // First attempts should be allowed assertTrue(rateLimiter.checkAttempt(username, ip)); rateLimiter.recordFailure(username, ip);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
* @param value the value associated with the item * @return a map containing the label and value entries */ protected Map<String, String> createItem(final String label, final String value) { final Map<String, String> map = new HashMap<>(2); map.put(Constants.ITEM_LABEL, label); map.put(Constants.ITEM_VALUE, value); return map; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
} } } static String queryLookup(final String query, final String param) { final char in[] = query.toCharArray(); int i, ch, st, eq; st = eq = 0; for (i = 0; i < in.length; i++) { ch = in[i]; if (ch == '&') { if (eq > st) { final String p = new String(in, st, eq - st);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java
* * @param message the message to display * @param defaultReply the default reply value * @return the string entered by the user * @throws PrompterException if an exception occurs */ @Nonnull default String prompt(@Nullable String message, @Nullable String defaultReply) throws PrompterException { return prompt(message, null, defaultReply); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/NumberConversionUtilTest.java
*/ public void testFindFractionDelimeter() throws Exception { final String delim = NumberConversionUtil.findDecimalSeparator(Locale.JAPAN); assertEquals(".", delim); } /** * @throws Exception */ public void testFindFractionDelimeter2() throws Exception { final String delim = NumberConversionUtil.findDecimalSeparator(Locale.FRANCE); assertEquals(",", delim); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 3.2K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java
* * @param protoSession The proto session, never {@code null}. * @return The user properties with contributions. */ default Map<String, String> contribute(ProtoSession protoSession) { HashMap<String, String> userProperties = new HashMap<>(protoSession.getUserProperties()); contribute(userProperties); return userProperties; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Nov 20 19:58:27 UTC 2024 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/FileAuthTests.java
private static final String NAME_PREFIX = "fileAuthTest_"; private static final String API_PATH = "/api/admin/fileauth"; private static final String LIST_ENDPOINT_SUFFIX = "settings"; private static final String ITEM_ENDPOINT_SUFFIX = "setting"; private static final String KEY_PROPERTY = "username"; @Override protected String getNamePrefix() { return NAME_PREFIX; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.9K bytes - Viewed (0)