- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 477 for rflags (0.04 sec)
-
cmd/batch-handlers.go
skip := func(oi ObjectInfo) (ok bool) { if r.Flags.Filter.OlderThan > 0 && time.Since(oi.ModTime) < r.Flags.Filter.OlderThan.D() { // skip all objects that are newer than specified older duration return true } if r.Flags.Filter.NewerThan > 0 && time.Since(oi.ModTime) >= r.Flags.Filter.NewerThan.D() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.18.md
### Changed - github.com/evanphx/json-patch: [162e562 → v4.9.0+incompatible](https://github.com/evanphx/json-patch/compare/162e562...v4.9.0) ### Removed - github.com/jessevdk/go-flags: [v1.4.0](https://github.com/jessevdk/go-flags/tree/v1.4.0) # v1.18.8 ## Downloads for v1.18.8 ### Source Code filename | sha512 hash -------- | -----------
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 16 17:18:28 UTC 2021 - 373.2K bytes - Viewed (0) -
src/test/java/jcifs/FileNotifyInformationTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
* @param off the start offset in the data * @param len the number of bytes to write * @param flags write operation flags * @throws IOException if an I/O error occurs */ public void writeDirect(final byte[] b, int off, int len, final int flags) throws IOException { if (len <= 0) { return; } if (tmp == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
} @Test @DisplayName("Test all flag combinations for inheritance") void testAllFlagCombinationsForInheritance() { // Test each individual flag ace.flags = ACE.FLAGS_OBJECT_INHERIT; assertFalse(ace.isInherited()); ace.flags = ACE.FLAGS_CONTAINER_INHERIT; assertFalse(ace.isInherited()); ace.flags = ACE.FLAGS_NO_PROPAGATE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterRequest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
* @param flags * The flags to apply to this message. * @param challenge * The challenge from the domain controller/server. * @param target * The authentication target. */ public Type2Message(final CIFSContext tc, final int flags, final byte[] challenge, final String target) { setFlags(flags); setChallenge(challenge);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
* @param user the username * @param workstation the workstation name * @param flags the flags to use for the Type-3 message */ public Type3Message(final Type2Message type2, final String password, final String domain, final String user, String workstation, final int flags) { setFlags(flags | getDefaultFlags(type2)); if (workstation == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt
val result = mutableListOf<InetAddress>() val buf = Buffer() buf.write(byteString) buf.readShort() // query id val flags = buf.readShort().toInt() and 0xffff require(flags shr 15 != 0) { "not a response" } val responseCode = flags and 0xf if (responseCode == NXDOMAIN) { throw UnknownHostException("$hostname: NXDOMAIN") } else if (responseCode == SERVFAIL) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.9K bytes - Viewed (0)