Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for Tx (0.02 sec)

  1. cmd/metrics.go

    	connStats := globalConnStats.toServerConnStats()
    
    	// Network Sent/Received Bytes (internode)
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(interNodeNamespace, "tx", "bytes_total"),
    			"Total number of bytes sent to the other peer nodes by current MinIO server instance",
    			nil, nil),
    		prometheus.CounterValue,
    		float64(connStats.internodeOutputBytes),
    	)
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tests/update_test.go

    	saveTokenOwner := func(owner *TokenOwner) (*TokenOwner, error) {
    		var newOwner TokenOwner
    		if err := DB.Transaction(func(tx *gorm.DB) error {
    			if err := tx.Session(&gorm.Session{FullSaveAssociations: true}).Save(owner).Error; err != nil {
    				return err
    			}
    			if err := tx.Preload("Token").First(&newOwner, owner.ID).Error; err != nil {
    				return err
    			}
    			return nil
    		}); err != nil {
    			return nil, err
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    	}
    
    	var err error
    	_ = DB.Migrator().DropTable(&RelationModel1{}, &RelationModel2{}, &RelationModel3{})
    
    	tx := DB.Session(&gorm.Session{})
    	tx.IgnoreRelationshipsWhenMigrating = true
    
    	err = tx.AutoMigrate(&RelationModel3{})
    	if err != nil {
    		t.Errorf("AutoMigrate err:%v", err)
    	}
    
    	// RelationModel3 should be existed
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Aug 20 04:51:17 UTC 2025
    - 65.2K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle.go

    	Tier             string `json:"tier"`
    	TimeToResponseNS int64  `json:"timeToResponseNS"`
    	OutputBytes      int64  `json:"tx,omitempty"`
    	Error            string `json:"error,omitempty"`
    }
    
    func (op auditTierOp) String() string {
    	// flattening the auditTierOp{} for audit
    	return fmt.Sprintf("tier:%s,respNS:%d,tx:%d,err:%s", op.Tier, op.TimeToResponseNS, op.OutputBytes, op.Error)
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  5. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    cc.nd.us
    cc.ne.us
    cc.nh.us
    cc.nj.us
    cc.nm.us
    cc.nv.us
    cc.ny.us
    cc.oh.us
    cc.ok.us
    cc.or.us
    cc.pa.us
    cc.pr.us
    cc.ri.us
    cc.sc.us
    cc.sd.us
    cc.tn.us
    cc.tx.us
    cc.ua
    cc.ut.us
    cc.va.us
    cc.vi.us
    cc.vt.us
    cc.wa.us
    cc.wi.us
    cc.wv.us
    cc.wy.us
    cci.fr
    cd
    cd.eu.org
    cdn-edges.net
    cdn.cloudflare.net
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  6. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    cc.nd.us
    cc.ne.us
    cc.nh.us
    cc.nj.us
    cc.nm.us
    cc.nv.us
    cc.ny.us
    cc.oh.us
    cc.ok.us
    cc.or.us
    cc.pa.us
    cc.pr.us
    cc.ri.us
    cc.sc.us
    cc.sd.us
    cc.tn.us
    cc.tx.us
    cc.ua
    cc.ut.us
    cc.va.us
    cc.vi.us
    cc.vt.us
    cc.wa.us
    cc.wi.us
    cc.wv.us
    cc.wy.us
    cci.fr
    cd
    cd.eu.org
    cdn-edges.net
    cdn.cloudflare.net
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  7. cmd/notification.go

    	// FIXME: network calls made in this manner such as one goroutine per node,
    	// can easily eat into the internode bandwidth. This function would be mostly
    	// TX saturating, however there are situations where a RX might also saturate.
    	// To avoid these problems we must split the work at scale. With 1000 node
    	// setup becoming a reality we must try to shard the work properly such as
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.9K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    mn.us
    mo.us
    ms.us
    mt.us
    nc.us
    nd.us
    ne.us
    nh.us
    nj.us
    nm.us
    nv.us
    ny.us
    oh.us
    ok.us
    or.us
    pa.us
    pr.us
    ri.us
    sc.us
    sd.us
    tn.us
    tx.us
    ut.us
    vi.us
    vt.us
    va.us
    wa.us
    wi.us
    wv.us
    wy.us
    // The registrar notes several more specific domains available in each state,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
Back to top