- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 265 for Expression (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/SmbFile.java
* the names and the server does not have to return all directory * entries. * <p> * The wildcard expression may consist of two special meta * characters in addition to the normal filename characters. The '*' * character matches any number of characters in part of a name. If * the expression begins with one or more '?'s then exactly that * many characters will be matched whereas if it ends with '?'s
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.name = Nom labels.numOfThread = Nombre de Thread labels.duplicateHostName = Nom en double labels.pageNumber = Numéro de page labels.password = Mot de passe labels.paths = Chemins labels.port = Port labels.regex = Expression régulière labels.regularName = Nom régulier labels.replacement = Remplacement labels.sessionId = ID de session labels.sortOrder = Ordre d'affichage labels.updatedBy = Mis à jour par
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.6K bytes - Viewed (0) -
guava/src/com/google/common/io/BaseEncoding.java
* strings. This class includes several constants for encoding schemes specified by <a * href="http://tools.ietf.org/html/rfc4648">RFC 4648</a>. For example, the expression: * * <pre>{@code * BaseEncoding.base32().encode("foo".getBytes(US_ASCII)) * }</pre> * * <p>returns the string {@code "MZXW6==="}, and * * <pre>{@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 41.8K bytes - Viewed (0) -
guava/src/com/google/common/net/InternetDomainName.java
* @return Whether the part is valid */ private static boolean validatePart(String part, boolean isFinalPart) { // These tests could be collapsed into one big boolean expression, but // they have been left as independent tests for clarity. if (part.length() < 1 || part.length() > MAX_DOMAIN_PART_LENGTH) { return false; } /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 05 20:47:23 UTC 2024 - 28K bytes - Viewed (0) -
pom.xml
<groupId>org.opensearch.plugin</groupId> <artifactId>rank-eval-client</artifactId> </exclusion> <exclusion> <groupId>org.opensearch.plugin</groupId> <artifactId>lang-expression</artifactId> </exclusion> <exclusion> <groupId>org.opensearch.plugin</groupId> <artifactId>ingest-common</artifactId> </exclusion> <exclusion>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/Ordering.java
* TreeSet#TreeSet(Comparator)}, where such consistency is expected. * * <p>The returned comparator is serializable. * * <p><b>Java 8+ users:</b> Use the lambda expression {@code (a, b) -> 0} instead (in certain * cases you may need to cast that to {@code Comparator<YourType>}). * * @since 13.0 */ @GwtCompatible(serializable = true)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 39.4K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.name=Name labels.numOfThread=Num of Thread labels.duplicateHostName=Duplicate Name labels.pageNumber=Page Number labels.password=Password labels.paths=Paths labels.port=Port labels.regex=Regular Expression labels.regularName=Regular Name labels.replacement=Replacement labels.sessionId=Session ID labels.sortOrder=Display Order labels.updatedBy=Updated by labels.updatedTime=Updated Time labels.urls=URLs
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMap.java
/* * Even though it's weird to pass a defaultValue that is null, some callers do so. Those who * pass a literal "null" should probably just use `get`, but I would expect other callers to * pass an expression that *might* be null. This could happen with: * * - a `getFooOrDefault(@CheckForNull Foo defaultValue)` method that returns * `map.getOrDefault(FOO_KEY, defaultValue)` *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 44.6K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
* signed long. The implementation is branch-free, and benchmarks suggest it is measurably faster * than the straightforward ternary expression. */ @VisibleForTesting static int lessThanBranchFree(long x, long y) { // Returns the sign bit of x - y. return (int) (~~(x - y) >>> (Long.SIZE - 1)); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0)