Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 82 for notificaciones (0.05 seconds)

  1. 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
        }
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 24 00:12:28 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java

    import jcifs.internal.NotifyResponse;
    import jcifs.internal.SMBProtocolDecodingException;
    
    /**
     * Response for SMB1 NT Transaction change notification.
     *
     * This response contains file system change notifications that occurred
     * in the monitored directory, such as file creation, modification, or deletion.
     */
    public class NtTransNotifyChangeResponse extends SmbComNtTransactionResponse implements NotifyResponse {
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  3. 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();
        }
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 23 01:47:47 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  4. 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;
    
        /**
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 23 09:06:40 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  5. docs/logging/README.md

    KEY:
    audit_kafka[:name]  send audit logs to kafka endpoints
    
    ARGS:
    brokers*         (csv)       comma separated list of Kafka broker addresses
    topic            (string)    Kafka topic used for bucket notifications
    sasl_username    (string)    username for SASL/PLAIN or SASL/SCRAM authentication
    sasl_password    (string)    password for SASL/PLAIN or SASL/SCRAM authentication
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  6. internal/event/targetlist.go

    	"github.com/minio/minio/internal/store"
    	"github.com/minio/pkg/v3/workers"
    )
    
    const (
    	logSubsys = "notify"
    
    	// The maximum allowed number of concurrent Send() calls to all configured notifications targets
    	maxConcurrentAsyncSend = 50000
    )
    
    // Target - event target interface
    type Target interface {
    	ID() TargetID
    	IsActive() (bool, error)
    	Save(Event) error
    	SendFromStore(store.Key) error
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/request-forms.md

    Pero cuando el formulario incluye archivos, se codifica como `multipart/form-data`. Leerás sobre la gestión de archivos en el próximo capítulo.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  8. internal/config/api/help.go

    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         apiSyncEvents,
    			Description: "set to enable synchronous bucket notifications" + defaultHelpPostfix(apiSyncEvents),
    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         apiObjectMaxVersions,
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 16 08:43:49 GMT 2024
    - 4.4K bytes
    - Click Count (0)
  9. docs/minio-limits.md

    - BucketAnalytics, BucketMetrics, BucketLogging (Use [bucket notification](https://docs.min.io/community/minio-object-store/administration/monitoring/bucket-notifications.html) APIs)
    
    ### List of Amazon S3 Object APIs not supported on MinIO
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 6K bytes
    - Click Count (0)
  10. 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;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 4.5K bytes
    - Click Count (0)
Back to Top