- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 699 for whether (0.04 sec)
-
cmd/object-api-putobject_test.go
continue } // Test passes as expected, but the output values are verified for correctness here. if actualErr == nil { // Asserting whether the md5 output is correct. if expectedMD5, ok := testCase.inputMeta["etag"]; ok && expectedMD5 != objInfo.ETag { t.Errorf("Test %d: %s: Calculated Md5 different from the actual one %s.", i, instanceType, objInfo.ETag)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Feb 22 06:26:06 UTC 2024 - 25.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
/** * Checks if the response is extended. * * @return the isExtended */ public final boolean isExtended() { return this.isExtended; } /** * Sets whether the response is extended. * * @param isExtended * the isExtended to set */ public final void setExtended(final boolean isExtended) { this.isExtended = isExtended; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
if (userId != null) { context.put("userId", userId); } } /** * Log an authentication event with optimized performance * * @param success whether authentication succeeded * @param username the username (will be masked if configured) * @param authMethod authentication method used (domain or method) * @param remoteAddress remote address */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Route.kt
* * * **HTTP proxy:** a proxy server may be explicitly configured for the client. Otherwise, the * [proxy selector][java.net.ProxySelector] is used. It may return multiple proxies to attempt. * * **IP address:** whether connecting directly to an origin server or a proxy, opening a socket * requires an IP address. The DNS server may return multiple IP addresses to attempt. * * Each route is a specific selection of these options. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java
private int pid; private long byteOffset; private long lengthInBytes; /** * Constructs a LockingAndXRange with large file support. * * @param largeFile whether to use large file support (64-bit offsets) */ public LockingAndXRange(final boolean largeFile) { this.largeFile = largeFile; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
} // atStartOfRegister reports whether the parser is at the start of a register definition. func (p *Parser) atStartOfRegister(name string) bool { // Simple register: R10. _, present := p.arch.Register[name] if present { return true } // Parenthesized register: R(10). return p.arch.RegisterPrefix[name] && p.peek() == '(' } // atRegisterShift reports whether we are at the start of an ARM shifted register.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
* Used for navigating through multiple pages of failure records. */ @ValidateTypeFailure public String pageNumber; /** * The CRUD operation mode for this form. * Indicates whether this is a create, read, update, or delete operation. */ @ValidateTypeFailure public Integer crudMode; /** * The unique identifier of the failure URL record being edited.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/settings.xml
--> <!-- interactiveMode | This will determine whether maven prompts you when it needs input. If set to false, | maven will use a sensible default value, perhaps based on some other setting, for | the parameter in question. | | Default: true <interactiveMode>true</interactiveMode> --> <!-- offline | Determines whether maven should attempt to connect to the network when executing a build.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 22 07:44:50 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
* @return the message flags */ public int getFlags() { return flags; } /** * Check if a specific flag is set. * @param flag the flag to check * @return whether flag is set */ public boolean isFlagSet(final int flag) { return (this.flags & flag) == flag; } /** * Remove flag * * @param flag the flag to remove */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/ByteSinkTest.java
TestByteSink okSink = new TestByteSink(); assertThrows(IOException.class, () -> failSource.copyTo(okSink)); // ensure stream was closed IF it was opened (depends on implementation whether or not it's // opened at all if source.newInputStream() throws). assertTrue( "stream not closed when copying from source with option: " + option,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.8K bytes - Viewed (0)