Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for decltype (3.36 sec)

  1. cmd/admin-heal-ops.go

    	}
    
    	h.lastHealActivity = UTCNow()
    }
    
    func (h *healSequence) countHeals(healType madmin.HealItemType, healed bool) {
    	h.mutex.Lock()
    	defer h.mutex.Unlock()
    
    	if !healed {
    		h.scannedItemsMap[healType]++
    	} else {
    		h.healedItemsMap[healType]++
    	}
    
    	h.lastHealActivity = UTCNow()
    }
    
    // isQuitting - determines if the heal sequence is quitting (due to an
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 25.1K bytes
    - Viewed (1)
  2. cmd/crossdomain-xml-handler.go

    package cmd
    
    import "net/http"
    
    // Standard cross domain policy information located at https://s3.amazonaws.com/crossdomain.xml
    const crossDomainXML = `<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"><cross-domain-policy><allow-access-from domain="*" secure="false" /></cross-domain-policy>`
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 18 06:42:40 GMT 2024
    - 2.2K bytes
    - Viewed (0)
Back to top