Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tx_status (0.41 sec)

  1. src/database/sql/sql_test.go

    func TestTxCannotCommitAfterRollback(t *testing.T) {
    	db := newTestDB(t, "tx_status")
    	defer closeDB(t, db)
    
    	// First check query reporting is correct.
    	var txStatus string
    	err := db.QueryRow("SELECT|tx_status|tx_status|").Scan(&txStatus)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if g, w := txStatus, "autocommit"; g != w {
    		t.Fatalf("tx_status=%q, wanted %q", g, w)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

                                                  TF_Status* status) {
      Session* session;
      status->status = NewSession(opt->options, &session);
      if (status->status.ok()) {
        return new TF_DeprecatedSession({session});
      } else {
        DCHECK_EQ(nullptr, session);
        return nullptr;
      }
    }
    
    void TF_CloseDeprecatedSession(TF_DeprecatedSession* s, TF_Status* status) {
      status->status = s->session->Close();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    func targetResetHeader(arn string) string {
    	return fmt.Sprintf("%s-%s", ReservedMetadataPrefixLower+ReplicationReset, arn)
    }
    
    func resyncTarget(oi ObjectInfo, arn string, resetID string, resetBeforeDate time.Time, tgtStatus replication.StatusType) (rd ResyncTargetDecision) {
    	rd = ResyncTargetDecision{
    		ResetID:         resetID,
    		ResetBeforeDate: resetBeforeDate,
    	}
    	rs, ok := oi.UserDefined[targetResetHeader(arn)]
    	if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top