Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for srUpdate (0.17 sec)

  1. cmd/bucket-replication-stats.go

    func (r *ReplicationStats) srUpdateReplicaStat(sz int64) {
    	if r == nil {
    		return
    	}
    	atomic.AddInt64(&r.srStats.ReplicaSize, sz)
    	atomic.AddInt64(&r.srStats.ReplicaCount, 1)
    }
    
    func (r *ReplicationStats) srUpdate(sr replStat) {
    	dID, err := globalSiteReplicationSys.getDeplIDForEndpoint(sr.endpoint())
    	if err == nil {
    		r.srStats.update(sr, dID)
    	}
    }
    
    // Update updates in-memory replication statistics with new values.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  2. internal/s3select/testdata/lineitem_shipdate.parquet

    Harshavardhana <******@****.***> 1622584780 -0700
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 213 bytes
    - Viewed (0)
  3. internal/s3select/select_test.go

    </SelectObjectContentRequest>
    `), wantResult: `{"shipdate":"1996-03-13T"}
    {"shipdate":"1996-04-12T"}
    {"shipdate":"1996-01-29T"}
    {"shipdate":"1996-04-21T"}
    {"shipdate":"1996-03-30T"}`,
    		},
    		{
    			requestXML: []byte(`
    <?xml version="1.0" encoding="UTF-8"?>
    <SelectObjectContentRequest>
        <Expression>SELECT DATE_ADD(day, 2, shipdate) as shipdate FROM S3Object LIMIT 5</Expression>
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 76.2K bytes
    - Viewed (0)
Back to top