- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for strongly (0.05 sec)
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
// SECURITY WARNING: Unsecure basic authentication is enabled by default. // This sends credentials in Base64 encoding over potentially unencrypted connections. // For production, it is STRONGLY RECOMMENDED to set spnego.allow.unsecure.basic to false // and use HTTPS or more secure authentication methods. return getProperty(SPNEGO_ALLOW_UNSECURE_BASIC, "true"); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
ComponentUtil.getSsoManager().register(this); // Default SAML settings // NOTE: Many security settings are set to false by default for compatibility. // For production use, it is STRONGLY RECOMMENDED to enable security features: // - onelogin.saml2.security.authnrequest_signed // - onelogin.saml2.security.want_messages_signed // - onelogin.saml2.security.want_assertions_signed
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3) -
android/guava-tests/test/com/google/common/collect/InternersTest.java
} public void testStrong_builder() { int concurrencyLevel = 42; Interner<Object> interner = Interners.newBuilder().strong().concurrencyLevel(concurrencyLevel).build(); InternerImpl<Object> internerImpl = (InternerImpl<Object>) interner; assertEquals(Strength.STRONG, internerImpl.map.keyStrength()); } public void testWeak_simplistic() { String canonical = "a"; String not = new String("a");
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Dec 08 17:02:07 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/resources/fess_label_pl.properties
labels.key_match_title_details=Dopasowanie klucza labels.design_configuration=Projekt strony labels.design_title_file_upload=Plik do przesłania labels.design_title_file=Menedżer plików labels.design_file=Prześlij plik labels.design_file_name=Nazwa pliku (opcjonalnie) labels.design_button_upload=Prześlij labels.design_file_title_edit=Wyświetl plik strony labels.design_edit_button=Edytuj labels.design_download_button=Pobierz
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 48.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/InternersTest.java
} public void testStrong_builder() { int concurrencyLevel = 42; Interner<Object> interner = Interners.newBuilder().strong().concurrencyLevel(concurrencyLevel).build(); InternerImpl<Object> internerImpl = (InternerImpl<Object>) interner; assertEquals(Strength.STRONG, internerImpl.map.keyStrength()); } public void testWeak_simplistic() { String canonical = "a"; String not = new String("a");
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Dec 08 17:02:07 UTC 2025 - 4.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertThat(EntryFactory.getFactory(Strength.STRONG, false, false)) .isEqualTo(EntryFactory.STRONG); assertThat(EntryFactory.getFactory(Strength.STRONG, true, false)) .isEqualTo(EntryFactory.STRONG_ACCESS); assertThat(EntryFactory.getFactory(Strength.STRONG, false, true)) .isEqualTo(EntryFactory.STRONG_WRITE); assertThat(EntryFactory.getFactory(Strength.STRONG, true, true))
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 12 00:25:21 UTC 2025 - 115.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertThat(EntryFactory.getFactory(Strength.STRONG, false, false)) .isEqualTo(EntryFactory.STRONG); assertThat(EntryFactory.getFactory(Strength.STRONG, true, false)) .isEqualTo(EntryFactory.STRONG_ACCESS); assertThat(EntryFactory.getFactory(Strength.STRONG, false, true)) .isEqualTo(EntryFactory.STRONG_WRITE); assertThat(EntryFactory.getFactory(Strength.STRONG, true, true))
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 12 00:25:21 UTC 2025 - 117.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java
* know that the background thread has stopped and released its strong reference. */ private WeakReference<ReferenceQueue<Object>> queueReference; @Test public void testThatFinalizerStops() { weaklyReferenceQueue(); GcFinalization.awaitClear(queueReference); } /** If we don't keep a strong reference to the reference object, it won't be enqueued. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:07:52 UTC 2025 - 8.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java
* See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; import static com.google.common.collect.MapMakerInternalMap.Strength.STRONG; import static com.google.common.collect.MapMakerInternalMap.Strength.WEAK; import static com.google.common.testing.SerializableTester.reserialize; import static com.google.common.testing.SerializableTester.reserializeAndAssert;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Dec 08 22:42:14 UTC 2025 - 16.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java
// constructor tests public void testDefaults() { MapMakerInternalMap<Object, Object, ?, ?> map = makeMap(createMapMaker()); assertThat(map.keyStrength()).isEqualTo(Strength.STRONG); assertThat(map.valueStrength()).isEqualTo(Strength.STRONG); assertSame(map.keyStrength().defaultEquivalence(), map.keyEquivalence); assertSame(map.valueStrength().defaultEquivalence(), map.valueEquivalence()); assertThat(map.entryHelper)
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:07:52 UTC 2025 - 35.5K bytes - Viewed (0)