- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 277 for notifications (0.11 sec)
-
src/main/java/jcifs/internal/witness/WitnessRegisterRequest.java
*/ package jcifs.internal.witness; /** * Represents a witness registration request as defined in MS-SWN specification. * Used to register for witness notifications from the witness service. */ public class WitnessRegisterRequest { /** * Creates a new witness register request. */ public WitnessRegisterRequest() { // Default constructor }
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/internal/smb2/lease/DirectoryLeaseManager.java
* @return CIFS context */ public CIFSContext getContext() { return context; } /** * Check if directory notifications are enabled in configuration * * @param config configuration * @return true if notifications are enabled */ private boolean isDirectoryNotificationsEnabled(Configuration config) { return config.isDirectoryNotificationsEnabled(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
cmd/tier-handlers.go
switch cfg.Name { case storageclass.STANDARD, storageclass.RRS: writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errTierReservedName), r.URL) return } // Refresh from the disk in case we had missed notifications about edits from peers. if err := globalTierConfigMgr.Reload(ctx, objAPI); err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 12 20:44:05 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
* * NT Transactions are an extended form of the basic transaction protocol * that provides additional functionality for Windows NT-specific operations * such as security descriptor queries and file change notifications. */ public abstract class SmbComNtTransaction extends SmbComTransaction { // relative to headerStart private static final int NTT_PRIMARY_SETUP_OFFSET = 71;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java
import jcifs.dcerpc.ndr.NdrBuffer; import jcifs.dcerpc.ndr.NdrException; /** * WitnessUnregister RPC message implementation for MS-SWN specification. * This message is used to unregister from witness notifications. */ public class WitnessUnregisterMessage extends WitnessRpcMessage { // Input parameters for WitnessUnregister private byte[] contextHandle; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java
private int breakReason; private int accessMaskHint; private int shareAccessHint; /** * Constructs an SMB2 lease break notification with the given configuration. * * @param config the configuration for this notification */ public Smb2LeaseBreakNotification(Configuration config) { super(config); } /** * Gets the lease key that is being broken
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
} } @Nested @DisplayName("Concurrency Tests") class ConcurrencyTests { @Test @DisplayName("Should handle concurrent received notifications") void testConcurrentReceived() throws InterruptedException { int threadCount = 10; CountDownLatch startLatch = new CountDownLatch(1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * SMB2 Change Notify request message. * * This command is used to monitor a directory for changes * and receive notifications when modifications occur. * * @author mbechler */ public class Smb2ChangeNotifyRequest extends ServerMessageBlock2Request<Smb2ChangeNotifyResponse> { /** * Flag to watch the directory tree recursively
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} /** * Handle a witness event * * @param notification the witness notification */ private void handleWitnessEvent(WitnessNotification notification) { log.info("Handling witness event: {} for resource: {}", notification.getEventType(), notification.getResourceName()); switch (notification.getEventType()) { case RESOURCE_CHANGE:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
*/ @Size(max = 10000) public String purgeByBots; /** * Email addresses to receive system notifications. * Multiple addresses can be specified, separated by commas. */ @Size(max = 1000) public String notificationTo; /** * Enable or disable search suggestions based on search logs. * When enabled, suggestions are generated from previous searches.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0)