- Sort Score
- Result 10 results
- Languages All
Results 2141 - 2150 of 6,875 for republic (0.1 sec)
-
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingResult.java
this.effectiveSettings = effectiveSettings; this.problems = (problems != null) ? problems : new ArrayList<>(); } @Override public Settings getEffectiveSettings() { return effectiveSettings; } @Override public List<SettingsProblem> getProblems() { return problems; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
* * @author mbechler * */ public class Smb2SessionSetupResponse extends ServerMessageBlock2Response { /** * Session flag indicating this is a guest session */ public static final int SMB2_SESSION_FLAGS_IS_GUEST = 0x1; /** * Session flag indicating this is a null/anonymous session */ public static final int SMB2_SESSION_FLAGS_IS_NULL = 0x2; /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
*/ @TestInstance(Lifecycle.PER_METHOD) public class SecureCredentialStorageTest { private SecureCredentialStorage storage; private char[] masterPassword; @BeforeEach public void setUp() throws Exception { masterPassword = "MasterPassword123!@#".toCharArray(); storage = new SecureCredentialStorage(masterPassword.clone()); } @AfterEach public void tearDown() throws Exception {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java
*/ public CaseInsensitiveMap(final int capacity) { super(capacity); } /** * Returns whether the key is contained. * * @param key the key * @return whether the key is contained */ public boolean containsKey(final String key) { return super.containsKey(convertKey(key)); } @Override public V get(final Object key) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/LogStream.java
* License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsTest.java
import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.opensearch.index.IndexNotFoundException; public class SuggestSettingsTest { String id = "settings-test"; static SuggestSettings settings; static OpenSearchRunner runner; @BeforeClass public static void beforeClass() throws Exception { runner = new OpenSearchRunner(); runner.onBuild((number, settingsBuilder) -> {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 13:04:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
import org.opensearch.action.index.IndexRequestBuilder; import org.opensearch.action.support.WriteRequest; import org.opensearch.transport.client.Client; public class SuggesterTest { static Suggester suggester; static OpenSearchRunner runner; @BeforeClass public static void beforeClass() throws Exception { runner = new OpenSearchRunner(); runner.onBuild((number, settingsBuilder) -> {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 37.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* @return A SuggestRequestBuilder instance. */ public SuggestRequestBuilder suggest() { return new SuggestRequestBuilder(client, readingConverter, normalizer).setIndex(getSearchAlias(index)); } /** * Creates a new PopularWordsRequestBuilder for querying popular words. * @return A PopularWordsRequestBuilder instance. */ public PopularWordsRequestBuilder popularWords() {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * API action for admin user management. */ public class ApiAdminUserAction extends FessApiAdminAction { /** The logger for this class. */ private static final Logger logger = LogManager.getLogger(ApiAdminUserAction.class);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 7.8K bytes - Viewed (0)