- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,859 for Q$name (1.43 sec)
-
src/test/java/jcifs/smb/SmbFilenameFilterTest.java
@ValueSource(strings = { " \t\n" }) void handlesNullAndEmptyNames(String name) throws Exception { // Filter accepts only when name is exactly null, otherwise false SmbFilenameFilter filter = (dir, n) -> n == null; boolean result = filter.accept(mockDir, name); if (name == null) { assertTrue(result, "Null name should be accepted by this filter"); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceBundleUtil.java
* * @param name the resource bundle name (must not be {@literal null} or empty) * @return {@link ResourceBundle} * @see ResourceBundle#getBundle(String) */ public static final ResourceBundle getBundle(final String name) { assertArgumentNotEmpty("name", name); try { return ResourceBundle.getBundle(name); } catch (final MissingResourceException ignore) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.3K bytes - Viewed (0) -
compat/maven-compat/src/main/mdo/paramdoc.mdo
<classes> <class rootElement="true" xml.tagName="paramdoc"> <version>1.0.0</version> <name>ExpressionDocumentation</name> <description>The root of a parameter plugin expression document.</description> <fields> <field> <version>1.0.0</version> <name>expressions</name> <description>The list of plugin parameter expressions described by this document.</description>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsUserInfoCA.java
} } public void scriptedMetric(String name, ConditionOptionCall<ScriptedMetricAggregationBuilder> opLambda) { ScriptedMetricAggregationBuilder builder = regScriptedMetricA(name); if (opLambda != null) { opLambda.callback(builder); } } public void topHits(String name, ConditionOptionCall<TopHitsAggregationBuilder> opLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
/** SID name type: domain. */ public static final int SID_NAME_DOMAIN = 3; /** SID name type: alias. */ /** SID name type: alias. */ public static final int SID_NAME_ALIAS = 4; /** SID name type: well-known group. */ /** SID name type: well-known group. */ public static final int SID_NAME_WKN_GRP = 5; /** SID name type: deleted. */ /** SID name type: deleted account. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
this.version = name.substring(ind2 + 1); } } public ArtifactMetadata(String groupId, String name, String version) { this(groupId, name, version, null); } public ArtifactMetadata(String groupId, String name, String version, String type) { this(groupId, name, version, type, null); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
} /** * Sets an object in the current request attributes. * * @param name The attribute name * @param value The attribute value */ public static void setObject(final String name, final Object value) { LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(name, value)); } /** * Gets an object from the current request attributes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
private final byte[] name; private final int size; public MockCreateContextRequest(String name) { this(name, 32); } public MockCreateContextRequest(String name, int size) { this.name = name != null ? name.getBytes(StandardCharsets.UTF_8) : null; this.size = size; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
InternetDomainName(String name) { // Normalize: // * ASCII characters to lowercase // * All dot-like characters to '.' // * Strip trailing '.' name = Ascii.toLowerCase(DOTS_MATCHER.replaceFrom(name, '.')); if (name.endsWith(".")) { name = name.substring(0, name.length() - 1); } checkArgument(name.length() <= MAX_LENGTH, "Domain name too long: '%s':", name);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0)