- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 244 for PREFIX (0.03 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
private static final long serialVersionUID = 1L; @Override public String get(String propertyKey) { // Check system properties first (with prefix) String systemValue = System.getProperty(Constants.FESS_CONFIG_PREFIX + propertyKey); if (systemValue != null) { return systemValue; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Guest permissions for search roles. role.search.guest.permissions={role}guest # Prefix for user roles in search. role.search.user.prefix=1 # Prefix for group roles in search. role.search.group.prefix=2 # Prefix for role roles in search. role.search.role.prefix=R # Prefix for denied roles in search. role.search.denied.prefix=D # ----------------------------------------------------------
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
đ đ â Ⲡ& đ đ´ đ¨ đ´. âĢī¸ đ đĢ đ đ. đļ /// ### đ `APIRouter` âŽī¸ đ `prefix`, `tags`, `responses`, & `dependencies` đ, âĄī¸ đ đ đĸ đ¤ đ `app/internal/admin.py` đ. âĢī¸ đ `APIRouter` âŽī¸ đĄ *⥠đ ī¸* đ đ đĸ đ° đ đ đ. đ đŧ âĢī¸ đ đ đ . âī¸ âĄī¸ đŦ đ âŠī¸ âĢī¸ đ° âŽī¸ đ đ đĸ, đĨ đĢđ đ âĢī¸ & đŽ `prefix`, `dependencies`, `tags`, âī¸. đ `APIRouter`: ```Python hl_lines="3" title="app/internal/admin.py"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 15.5K bytes - Viewed (0) -
docs/de/docs/tutorial/bigger-applications.md
```Python hl_lines="3" title="app/internal/admin.py" {!../../docs_src/bigger_applications/app/internal/admin.py!} ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
* It uses a logger to log warnings if there are issues deleting the temporary file.</p> * * <p>Fields:</p> * <ul> * <li>{@code logger} - Logger instance for logging warnings.</li> * <li>{@code PREFIX} - Prefix for the temporary file name.</li> * <li>{@code SUFFIX} - Suffix for the temporary file name.</li> * <li>{@code done} - Flag indicating whether the file has been retrieved.</li> * </ul> * * <p>Constructors:</p>
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 3.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CipherSuiteTest.kt
.isEqualTo(CipherSuite.TLS_RSA_WITH_AES_128_CBC_SHA256.javaName) } /** * On the Oracle JVM some older cipher suites have the "SSL_" prefix and others have the "TLS_" * prefix. On the IBM JVM all cipher suites have the "SSL_" prefix. * * Prior to OkHttp 3.3.1 we accepted either form and consider them equivalent. And since OkHttp
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.2K bytes - Viewed (0) -
schema/naming_test.go
} } func TestFormatNameWithStringLongerThan63Characters(t *testing.T) { ns := NamingStrategy{IdentifierMaxLength: 63} formattedName := ns.formatName("prefix", "table", "thisIsAVeryVeryVeryVeryVeryVeryVeryVeryVeryLongString") if formattedName != "prefix_table_thisIsAVeryVeryVeryVeryVeryVeryVeryVeryVer180f2c67" { t.Errorf("invalid formatted name generated, got %v", formattedName) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue May 30 02:00:48 UTC 2023 - 7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache2/RelayTest.kt
source.close() buffer.readByteString() } private fun assertFile( prefix: ByteString, upstreamSize: Long, metadataSize: Int, upstream: String?, metadata: ByteString?, ) { val source = file.source().buffer() assertThat(source.readByteString(prefix.size.toLong())).isEqualTo(prefix) assertThat(source.readLong()).isEqualTo(upstreamSize)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
public static class ImmutableListTailSubListGenerator extends TestStringListGenerator { @Override protected List<String> create(String[] elements) { String[] prefix = {"f", "g"}; String[] all = new String[elements.length + prefix.length]; arraycopy(prefix, 0, all, 0, 2); arraycopy(elements, 0, all, 2, elements.length); return ImmutableList.copyOf(all).subList(2, elements.length + 2); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
} // Test constructor with allinurl prefix public void test_constructor_allinurlPrefix() { queryContext = new QueryContext("allinurl:test query", false); assertEquals("test query", queryContext.getQueryString()); assertEquals("url", queryContext.getDefaultField()); } // Test constructor with allinurl prefix and empty remainder
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0)