Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cancelBtn (0.25 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    this.opens);
    L399:
    L400:        //apply CSS classes and labels to buttons
    L401:        this.container.find('.applyBtn, .cancelBtn').addClass(this.buttonClasses);
    L402:        if (this.applyButtonClasses.length)
    L403:            this.container.find('.applyBtn').addClass(this.applyButtonClasses);
    L404:        if (this.cancelButtonClasses.length)
    L405:            this.container.find('.cancelBtn').addClass(this.cancelButtonClasses);
    L406:        this.container.find('.applyBtn').html(this.locale.applyLabel);
    ...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  2. internal/grid/muxclient.go

    type Response struct {
    	Msg []byte
    	Err error
    }
    
    func newMuxClient(ctx context.Context, muxID uint64, parent *Connection) *muxClient {
    	ctx, cancelFn := context.WithCancelCause(ctx)
    	return &muxClient{
    		MuxID:     muxID,
    		ctx:       ctx,
    		cancelFn:  cancelFn,
    		parent:    parent,
    		LastPong:  time.Now().Unix(),
    		BaseFlags: parent.baseFlags,
    	}
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  3. cmd/global-heal.go

    		// run-background heal with reserved bucket
    		bucket:   minioReservedBucket,
    		settings: hs,
    		currentStatus: healSequenceStatus{
    			Summary:      healNotStartedStatus,
    			HealSettings: hs,
    		},
    		cancelCtx:          cancelCtx,
    		ctx:                ctx,
    		reportProgress:     false,
    		scannedItemsMap:    make(map[madmin.HealItemType]int64),
    		healedItemsMap:     make(map[madmin.HealItemType]int64),
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 15K bytes
    - Viewed (1)
  4. internal/grid/connection.go

    		PutByteBuffer(m.Payload)
    	} else if m.Payload != nil {
    		v.response(m.Seq, Response{
    			Msg: m.Payload,
    			Err: nil,
    		})
    	}
    	if m.Flags&FlagEOF != 0 {
    		if v.cancelFn != nil && m.Flags&FlagPayloadIsErr == 0 {
    			v.cancelFn(errStreamEOF)
    		}
    		v.close()
    		if debugReqs {
    			fmt.Println(m.MuxID, c.String(), "handleMuxServerMsg: DELETING MUX")
    		}
    		c.outgoing.Delete(m.MuxID)
    	}
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  5. cmd/admin-heal-ops.go

    	currentStatus healSequenceStatus
    
    	// channel signaled by background routine when traversal has
    	// completed
    	traverseAndHealDoneCh chan error
    
    	// canceler to cancel heal sequence.
    	cancelCtx context.CancelFunc
    
    	// the last result index sent to client
    	lastSentResultIndex int64
    
    	// Number of total items scanned against item type
    	scannedItemsMap map[madmin.HealItemType]int64
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 25.1K bytes
    - Viewed (1)
Back to top