- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 419 for Callback (0.75 sec)
-
src/main/java/jcifs/Configuration.java
*/ int getLanManCompatibility(); /** * * Property {@code jcifs.smb.allowNTLMFallback} (boolean, default true) * * @return whether to allow fallback from kerberos to NTLM */ boolean isAllowNTLMFallback(); /** * Property {@code jcifs.smb.useRawNTLM} (boolean, default false) *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
cmd/iam-store.go
return policies, nil } if userPolicyPresent { // if user mapping present and no group policies found // rely on user policy for access, instead of fallback. return nil, nil } var mu sync.Mutex // no mappings found, fallback for all groups. g := errgroup.WithNErrs(len(groups)).WithConcurrency(10) // load like 10 groups at a time. for index := range groups { g.Go(func() error {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 86.7K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
log.warn("Network partition detected - witness notifications may be delayed"); // Switch to more aggressive connection retry // Increase heartbeat frequency // Consider fallback mechanisms } public void handlePartitionRecovery() { log.info("Network partition recovered - resuming normal witness operations"); // Restore normal operation parameters
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
byte[] newKey = deriveKey(currentKey, rotationLabel, String.valueOf(System.currentTimeMillis()).getBytes(), currentKey.length); // Archive old key (keep last version for rollback) String archiveId = sessionId + ".v" + currentVersion; storeSessionKeyInternal(archiveId, currentKey, "AES"); // Store new key
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
doc/godebug.md
Go 1.20 introduced automatic seeding of the [`math/rand`](/pkg/math/rand) global random number generator, controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed). Go 1.20 introduced the concept of fallback roots for use during certificate verification, controlled by the [`x509usefallbackroots` setting](/pkg/crypto/x509/#SetFallbackRoots). Go 1.20 removed the preinstalled `.a` files for the standard library
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jul 08 18:30:38 UTC 2025 - 22.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
// Add SMB3 features support with error handling for compatibility SmbSessionImpl session = h.getSession(); // Enable lease support if available, with fallback for compatibility boolean leasesAdded = false; if (config.isUseLeases() && h.isSMB3()) { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSet.java
return new SingletonImmutableSet<>(e1); } /* * TODO: b/315526394 - Skip the Builder entirely for the of(...) methods, since we don't need to * worry that we might trigger the fallback to the JDK-backed implementation? (The varargs one * _could_, so we could keep it as it is. Or we could convince ourselves that hash flooding is * unlikely in practice there, too.) */ /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
} private static String scopeWithDelimiter(Inet6Address ip) { // getHostAddress on android sometimes maps the scope ID to an invalid interface name; if the // mapped interface isn't present, fallback to use the scope ID (which has no validation against // present interfaces) NetworkInterface scopedInterface = ip.getScopedInterface(); if (scopedInterface != null) { return "%" + scopedInterface.getName();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/bytes/bytes_test.go
{"oooooooooooooooooooooo", "r", -1}, {"oxoxoxoxoxoxoxoxoxoxoxoy", "oy", 22}, {"oxoxoxoxoxoxoxoxoxoxoxox", "oy", -1}, // test fallback to Rabin-Karp. {"000000000000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000000001", 5}, // test fallback to IndexRune {"oxoxoxoxoxoxoxoxoxoxox☺", "☺", 22}, // invalid UTF-8 byte sequence (must be longer than bytealg.MaxBruteForce to
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 28 18:13:58 UTC 2025 - 62.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
return result; } catch (Exception e) { log.warn("Failed to create fresh context, using singleton", e); try { // Fallback to singleton with fresh auth NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(SingletonContext.getInstance(), WORKGROUP, USERNAME, PASSWORD);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0)