Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for transaccions (0.19 sec)

  1. src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipe.java

    
        /**
         * 
         * @param config
         * @param pipeName
         * @param fid
         */
        public TransPeekNamedPipe ( Configuration config, String pipeName, int fid ) {
            super(config, SMB_COM_TRANSACTION, TRANS_PEEK_NAMED_PIPE);
            this.name = pipeName;
            this.fid = fid;
            this.timeout = 0xFFFFFFFF;
            this.maxParameterCount = 6;
            this.maxDataCount = 1;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  2. errors.go

    	"gorm.io/gorm/logger"
    )
    
    var (
    	// ErrRecordNotFound record not found error
    	ErrRecordNotFound = logger.ErrRecordNotFound
    	// ErrInvalidTransaction invalid transaction when you are trying to `Commit` or `Rollback`
    	ErrInvalidTransaction = errors.New("invalid transaction")
    	// ErrNotImplemented not implemented
    	ErrNotImplemented = errors.New("not implemented")
    	// ErrMissingWhereClause missing where clause
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Apr 26 02:53:17 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

                case ServerMessageBlock.SMB_COM_CLOSE:
                case ServerMessageBlock.SMB_COM_TREE_DISCONNECT:
                    break;
                case ServerMessageBlock.SMB_COM_TRANSACTION:
                case ServerMessageBlock.SMB_COM_TRANSACTION2:
                    switch ( ( (SmbComTransaction) request ).getSubCommand() & 0xFF ) {
                    case SmbComTransaction.NET_SHARE_ENUM:
                    case SmbComTransaction.NET_SERVER_ENUM2:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/TransWaitNamedPipe.java

     */
    
    package jcifs.smb1.smb1;
    
    class TransWaitNamedPipe extends SmbComTransaction {
    
        TransWaitNamedPipe( String pipeName ) {
            name = pipeName;
            command = SMB_COM_TRANSACTION;
            subCommand = TRANS_WAIT_NAMED_PIPE;
            timeout = 0xFFFFFFFF;
            maxParameterCount = 0;
            maxDataCount = 0;
            maxSetupCount = (byte)0x00;
            setupCount = 2;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java

        // relative to headerStart
        private static final int SETUP_OFFSET        = 61;
    
        private static final int DISCONNECT_TID      = 0x01;
        private static final int ONE_WAY_TRANSACTION = 0x02;
    
        private int pad;
        private int pad1;
        private boolean parametersDone, dataDone;
    
        protected int totalParameterCount;
        protected int totalDataCount;
        protected int parameterCount;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java

         * @param data
         * @param off
         * @param len
         */
        public TransCallNamedPipe ( Configuration config, String pipeName, byte[] data, int off, int len ) {
            super(config, SMB_COM_TRANSACTION, TRANS_CALL_NAMED_PIPE);
            this.name = pipeName;
            this.pipeData = data;
            this.pipeDataOff = off;
            this.pipeDataLen = len;
            this.timeout = 0xFFFFFFFF;
            this.maxParameterCount = 0;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // (for example, hits-per-second on an Ingress object).
      // +optional
      optional ObjectMetricSource object = 2;
    
      // pods refers to a metric describing each pod in the current scale target
      // (for example, transactions-processed-per-second).  The values will be
      // averaged together before being compared to the target value.
      // +optional
      optional PodsMetricSource pods = 3;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // (for example, hits-per-second on an Ingress object).
      // +optional
      optional ObjectMetricSource object = 2;
    
      // pods refers to a metric describing each pod in the current scale target
      // (for example, transactions-processed-per-second).  The values will be
      // averaged together before being compared to the target value.
      // +optional
      optional PodsMetricSource pods = 3;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java

    
        /**
         * 
         * @param config
         * @param filename
         */
        public Trans2GetDfsReferral ( Configuration config, String filename ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_GET_DFS_REFERRAL);
            this.request = new DfsReferralRequestBuffer(filename, 3);
            this.totalDataCount = 0;
            this.maxParameterCount = 0;
            this.maxDataCount = 4096;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

    
        /**
         * @param config
         * @param fid
         * @param info
         * 
         */
        public Trans2SetFileInformation ( Configuration config, int fid, FileInformation info ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_SET_FILE_INFORMATION);
            this.fid = fid;
            this.info = info;
            this.maxParameterCount = 6;
            this.maxDataCount = 0;
            this.maxSetupCount = (byte) 0x00;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
Back to top