Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for BRS (0.02 sec)

  1. cmd/bucket-stats.go

    func (brs *BucketReplicationStats) Empty() bool {
    	return len(brs.Stats) == 0 && brs.ReplicaSize == 0
    }
    
    // Clone creates a new BucketReplicationStats copy
    func (brs BucketReplicationStats) Clone() (c BucketReplicationStats) {
    	// This is called only by replicationStats cache and already holds a
    	// read lock before calling Clone()
    
    	c = brs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue33013.dir/c.go

    // license that can be found in the LICENSE file.
    
    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type BI interface {
    	Something(s int64) int64
    	Another(pxp a.G) int32
    }
    
    func BRS(sd *b.ServiceDesc, server BI, xyz int) *b.Service {
    	return b.RS(sd, server, 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 361 bytes
    - Viewed (0)
  3. test/fixedbugs/issue33013.dir/d.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package d
    
    import (
    	"./b"
    	"./c"
    )
    
    var GA b.Service
    
    func C() {
    	c.BRS(nil, nil, 22)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 249 bytes
    - Viewed (0)
  4. test/fixedbugs/issue33219.dir/c.go

    // license that can be found in the LICENSE file.
    
    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type BI interface {
    	Another(pxp a.A) int32
    }
    
    //go:noinline
    func BRS(sd a.A, xyz int) *b.Service {
    	x := b.Yes(sd, nil)
    	return b.No(x, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 339 bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	}
    	// OK, parse data.
    	if _, err = brs.UnmarshalMsg(data[4:]); err != nil {
    		return brs, err
    	}
    
    	switch brs.Version {
    	case resyncMetaVersionV1:
    	default:
    		return brs, fmt.Errorf("unexpected resync meta version: %d", brs.Version)
    	}
    	return brs, nil
    }
    
    // save resync status to resync.bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication-handlers.go

    		return
    	}
    
    	if _, _, err := globalBucketMetadataSys.GetReplicationConfig(ctx, bucket); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    	brs, err := loadBucketResyncMetadata(ctx, bucket, objectAPI)
    	if err != nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrBadRequest, InvalidArgument{
    			Bucket: bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. cmd/bucket-replication-utils_gen.go

    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "v":
    			z.Version, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Version")
    				return
    			}
    		case "brs":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "TargetsMap")
    				return
    			}
    			if z.TargetsMap == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  8. cmd/bucket-replication-utils.go

    type BucketReplicationResyncStatus struct {
    	Version int `json:"version" msg:"v"`
    	// map of remote arn to their resync status for a bucket
    	TargetsMap map[string]TargetReplicationResyncStatus `json:"resyncMap,omitempty" msg:"brs"`
    	ID         int                                      `json:"id" msg:"id"`
    	LastUpdate time.Time                                `json:"lastUpdate" msg:"lu"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    co.com
    
    // Roar Domains LLC : https://roar.basketball/
    // Submitted by Gavin Brown <******@****.***>
    aus.basketball
    nz.basketball
    
    // BRS Media : https://brsmedia.com/
    // Submitted by Gavin Brown <******@****.***>
    radio.am
    radio.fm
    
    // c.la : http://www.c.la/
    c.la
    
    // certmgr.org : https://certmgr.org
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top