- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 35 for notificaciones (0.05 seconds)
-
docs/es/docs/help-fastapi.md
Allí puedes seleccionar "Releases only". Al hacerlo, recibirás notificaciones (en tu email) cada vez que haya un nuevo lanzamiento (una nueva versión) de **FastAPI** con correcciones de bugs y nuevas funcionalidades. ## Conéctate con el autor { #connect-with-the-author }
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 10:15:01 GMT 2025 - 14.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
List<FileNotifyInformation> notifications = response.getNotifyInformation(); assertNotNull(notifications); assertEquals(1, notifications.size()); assertEquals(mockNotifyInfo1, notifications.get(0)); // Verify the notification content FileNotifyInformation info = notifications.get(0);Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 21.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
if (message.isSuccess()) { List<WitnessAsyncNotifyMessage.WitnessNotificationResponse> notifications = message.getNotifications(); if (!notifications.isEmpty()) { log.debug("Received {} notifications", notifications.size()); return notifications.get(0); // Return first notification } } else {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 12.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java
// Verify first notification assertEquals("file1.txt", notifications.get(0).getFileName()); assertEquals(FileNotifyInformation.FILE_ACTION_ADDED, notifications.get(0).getAction()); // Verify second notification assertEquals("file2.txt", notifications.get(1).getFileName()); assertEquals(FileNotifyInformation.FILE_ACTION_REMOVED, notifications.get(1).getAction()); // Verify third notificationCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
} /** * Gets the list of notifications received. * * @return the list of notifications */ public List<WitnessNotificationResponse> getNotifications() { return new ArrayList<>(notifications); } /** * Sets the notifications list. * * @param notifications the notifications to set */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 16.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java
List<FileNotifyInformation> notifications = response.getNotifyInformation(); assertEquals(3, notifications.size()); assertEquals(1, notifications.get(0).getAction()); assertEquals("file1", notifications.get(0).getFileName()); assertEquals(2, notifications.get(1).getAction()); assertEquals("file2", notifications.get(1).getFileName());
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 18.8K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
processNotificationBatch(batch); } } private void processNotificationBatch(List<WitnessNotification> notifications) { // Process multiple notifications together for efficiency for (WitnessNotification notification : notifications) { // Handle notification } } } ``` ## 10. Security Considerations
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0) -
docs/config/README.md
``` notify_webhook publish bucket notifications to webhook endpoints notify_amqp publish bucket notifications to AMQP endpoints notify_kafka publish bucket notifications to Kafka endpoints notify_mqtt publish bucket notifications to MQTT endpoints notify_nats publish bucket notifications to NATS endpoints
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 18.1K bytes - Click Count (1) -
impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml
</mailingList> <mailingList> <name>Maven Notifications List</name> <subscribe>notifications******@****.***</subscribe> <unsubscribe>notifications******@****.***</unsubscribe> <archive>http://mail-archives.apache.org/mod_mbox/maven-notifications/</archive> <otherArchives> <otherArchive>http://www.mail-archive.com/notifications@maven.apache.org</otherArchive>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 22.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
} } catch (Exception e) { log.error("Failed to register for witness notifications", e); throw new RuntimeException(e); } }); } /** * Unregisters from witness notifications. * * @param registration the registration to remove * @return a future that completes when unregistration is doneCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.8K bytes - Click Count (0)