Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for COMMIT (0.17 sec)

  1. src/database/sql/sql_test.go

    	if err != nil {
    		t.Errorf("expected nil error from Rollback; got %v", err)
    	}
    	err = tx.Commit()
    	if err != ErrTxDone {
    		t.Errorf("expected %q from Commit; got %q", ErrTxDone, err)
    	}
    
    	tx, err = db.Begin()
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = tx.Commit()
    	if err != nil {
    		t.Errorf("expected nil error from Commit; got %v", err)
    	}
    	err = tx.Rollback()
    	if err != ErrTxDone {
    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. src/database/sql/sql.go

    //
    // A transaction must end with a call to [Tx.Commit] or [Tx.Rollback].
    //
    // After a call to [Tx.Commit] or [Tx.Rollback], all operations on the
    // transaction fail with [ErrTxDone].
    //
    // The statements prepared for a transaction by calling
    // the transaction's [Tx.Prepare] or [Tx.Stmt] methods are closed
    // by the call to [Tx.Commit] or [Tx.Rollback].
    type Tx struct {
    	db *DB
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    	}
    }
    
    func getMinIOCommitMD() MetricDescription {
    	return MetricDescription{
    		Namespace: minioMetricNamespace,
    		Subsystem: softwareSubsystem,
    		Name:      commitInfo,
    		Help:      "Git commit hash for the MinIO release",
    		Type:      gaugeMetric,
    	}
    }
    
    func getS3TTFBDistributionMD() MetricDescription {
    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
          </fields>
        </class>
        <class>
          <name>Contributor</name>
          <description>Description of a person who has contributed to the project, but who does not have
            commit privileges. Usually, these contributions come in the form of patches submitted.</description>
          <version>3.0.0+</version>
          <fields>
            <field>
              <name>name</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

          // threshold is equal to ceilingPowerOfTwo(expectedSize). There is a separate code
          // path when the first operation on the new map is putAll(otherMap). There, prior to
          // https://github.com/openjdk/jdk/commit/3e393047e12147a81e2899784b943923fc34da8e, a bug
          // meant that sometimes a too-large threshold is calculated. However, this new threshold is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

          // threshold is equal to ceilingPowerOfTwo(expectedSize). There is a separate code
          // path when the first operation on the new map is putAll(otherMap). There, prior to
          // https://github.com/openjdk/jdk/commit/3e393047e12147a81e2899784b943923fc34da8e, a bug
          // meant that sometimes a too-large threshold is calculated. However, this new threshold is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "repository": {
              "description": "Repository URL",
              "type": "string"
            },
            "revision": {
              "description": "Commit hash for the specified revision.",
              "type": "string"
            }
          },
          "required": [
            "repository"
          ],
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top