- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 447 for myprefix (0.05 sec)
-
ci/official/utilities/windows.sh
# # Windows-specific utilities. # # Docker on Windows has difficulty using volumes other than C:\, when it comes # to setting up up volume mappings. # Thus, the drive letter is replaced with the passed prefix. # If no prefix is passed, by default, it's replaced with C:\, in case it's # something else (ex. T:), which is a volume used in internal CI. function replace_drive_letter_with_prefix () { local path_prefix if [[ -z "$2" ]]; then
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Jan 09 18:37:25 UTC 2025 - 1.2K bytes - Viewed (0) -
src/bytes/bytes.go
// CutPrefix returns s without the provided leading prefix byte slice // and reports whether it found the prefix. // If s doesn't start with prefix, CutPrefix returns s, false. // If prefix is the empty byte slice, CutPrefix returns s, true. // // CutPrefix returns slices of the original slice s, not copies. func CutPrefix(s, prefix []byte) (after []byte, found bool) { if !HasPrefix(s, prefix) { return s, false }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
} /** * Sets the prefix used for highlight field names in search results. * * @param highlightPrefix the prefix string to use for highlight fields */ public void setHighlightPrefix(final String highlightPrefix) { this.highlightPrefix = highlightPrefix; } /** * Gets the current highlight prefix used for highlight field names. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
private static final Logger logger = LogManager.getLogger(GsaConfigParser.class); /** Prefix for regular expression patterns. */ public static final String REGEXP = "regexp:"; /** Prefix for case-sensitive regular expression patterns. */ public static final String REGEXP_CASE = "regexpCase:"; /** Prefix for case-insensitive regular expression patterns. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
pom.xml
<src>${project.build.directory}/fess</src> <excludes>**/fess_config.properties,**/fess_env*.properties,**/tika.xml</excludes> <mapper> <type>perm</type> <prefix>${packaging.fess.app.dir}</prefix> <filemode>755</filemode> <user>${packaging.fess.user}</user> <group>${packaging.fess.group}</group> </mapper> </data> <!-- Add libs --> <data>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolder.java
* authentication based on a given path. * * <p>This class manages a collection of {@link SmbAuthentication} objects, each associated * with a specific path prefix. When a path is provided, it iterates through the stored * authentications to find the one whose path prefix matches the beginning of the given path. * This allows for different SMB shares to use different authentication credentials.</p> */ public class SmbAuthenticationHolder {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java
Float[] prefix = {86.0f, 99.0f}; Float[] all = concat(prefix, elements); return asList(all).subList(2, elements.length + 2); } } public static final class FloatsAsListMiddleSubListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { Float[] prefix = {Float.MIN_VALUE, Float.MAX_VALUE};
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java
Float[] prefix = {86.0f, 99.0f}; Float[] all = concat(prefix, elements); return asList(all).subList(2, elements.length + 2); } } public static final class FloatsAsListMiddleSubListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { Float[] prefix = {Float.MIN_VALUE, Float.MAX_VALUE};
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java
Integer[] prefix = {(int) 86, (int) 99}; Integer[] all = concat(prefix, elements); return asList(all).subList(2, elements.length + 2); } } public static final class IntsAsListMiddleSubListGenerator extends TestIntegerListGenerator { @Override protected List<Integer> create(Integer[] elements) { Integer[] prefix = {Integer.MIN_VALUE, Integer.MAX_VALUE};
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.8K bytes - Viewed (0) -
cmd/bucket-handlers_test.go
bucket: bucketName, prefix: "", keyMarker: "", uploadIDMarker: "", delimiter: "-", maxUploads: "0", accessKey: credentials.AccessKey, secretKey: credentials.SecretKey, expectedRespStatus: http.StatusOK, shouldPass: true, }, // Test case - 4. // Setting Invalid prefix and marker combination. {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 39.8K bytes - Viewed (0)