- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 699 for whether (0.03 sec)
-
src/main/java/org/codelibs/core/lang/ConstructorUtil.java
throw new InvocationTargetRuntimeException(constructor.getDeclaringClass(), e); } } /** * Returns whether the constructor is <code>public</code>. * * @param constructor the constructor (must not be {@literal null} or empty string) * @return whether the constructor is <code>public</code> */ public static boolean isPublic(final Constructor<?> constructor) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.1K bytes - Viewed (0) -
src/archive/tar/strconv.go
package tar import ( "bytes" "fmt" "strconv" "strings" "time" ) // hasNUL reports whether the NUL character exists within s. func hasNUL(s string) bool { return strings.Contains(s, "\x00") } // isASCII reports whether the input is an ASCII C-style string. func isASCII(s string) bool { for _, c := range s { if c >= 0x80 || c == 0x00 { return false } }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 17:08:20 UTC 2025 - 9.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
throw new IORuntimeException(e); } } /** * Returns whether SIDs (Security Identifiers) should be resolved. * @return true if SIDs should be resolved, false otherwise */ public boolean isResolveSids() { return resolveSids; } /** * Sets whether SIDs (Security Identifiers) should be resolved.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 22.5K bytes - Viewed (0) -
LICENSES/vendor/github.com/containerd/errdefs/pkg/LICENSE
and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Mar 05 11:36:39 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
*/ void ensureDFSResolved() throws CIFSException; /** * Checks if the server has the specified capability * @param cap the capability flag to check * @return whether the capability is present * @throws CIFSException if an error occurs checking capabilities */ boolean hasCapability(int cap) throws CIFSException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Message.java
*/ public interface Message { /** * Indicate that this message should retain it's raw payload */ void retainPayload(); /** * Determines whether to retain the message payload. * * @return whether to retain the message payload */ boolean isRetainPayload(); /** * Gets the raw payload of the message. * * @return the raw response message */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java
* @param includes the patterns of files to include, or null/empty for including all files * @param excludes the patterns of files to exclude, or null/empty for no exclusion * @param useDefaultExcludes whether to augment excludes with default SCM exclusion patterns * @return a PathMatcher that can be used to test if paths should be included * @throws NullPointerException if baseDirectory is null */ @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 21 19:37:56 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
*/ protected final List<String> excludePropertyNames = newArrayList(); /** * Whether to exclude properties with null values from the operation. */ protected boolean excludesNull = false; /** * Whether to exclude strings that consist only of whitespace from the operation. */ protected boolean excludesWhitespace = false; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
*/ SmbPipeResource getPipe(String url, int pipeType) throws CIFSException; /** * Close all connections and release resources associated with this context * * @return whether any connection was still in use * @throws CIFSException if an error occurs during cleanup */ boolean close() throws CIFSException; /** * Get the configuration object for this context *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
migrator/column_type.go
} return ct.SQLColumnType.DecimalSize() } // Nullable reports whether the column may be null. func (ct ColumnType) Nullable() (nullable bool, ok bool) { if ct.NullableValue.Valid { return ct.NullableValue.Bool, true } return ct.SQLColumnType.Nullable() } // Unique reports whether the column may be unique. func (ct ColumnType) Unique() (unique bool, ok bool) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Mar 24 01:31:58 UTC 2022 - 3.3K bytes - Viewed (0)