Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for doEmit (0.86 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. src/runtime/proc.go

    		throw("runtime.main not on m0")
    	}
    
    	// Record when the world started.
    	// Must be before doInit for tracing init.
    	runtimeInitTime = nanotime()
    	if runtimeInitTime == 0 {
    		throw("nanotime returning zero")
    	}
    
    	if debug.inittrace != 0 {
    		inittrace.id = getg().goid
    		inittrace.active = true
    	}
    
    	doInit(runtime_inittasks) // Must be before defer.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      auto new_result_quantized_type = CreateI8F32UniformQuantizedType(
          uniform_quantize_op->getLoc(), *rewriter.getContext(),
          result_quantized_type.getScale(), result_quantized_type.getZeroPoint());
      // Omit any bias and requantize ops as `tfl.{gemm_op}` outputs a
      // fused `qi8` type.
      rewriter.replaceAllUsesWith(uniform_quantize_op->getResult(0),
                                  op->getResult(0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	if p.Pos != "" && (len(p.ImportStack) == 0 || !p.alwaysPrintStack) {
    		// Omit import stack. The full path to the file where the error
    		// is the most important thing.
    		return p.Pos + ": " + p.Err.Error()
    	}
    
    	// If the error is an ImportPathError, and the last path on the stack appears
    	// in the error message, omit that path from the stack to avoid repetition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/work/exec.go

    	// which should work at least for GCC and clang.
    	//
    	// If the argument is "-Wl,", then it is testing the linker. In that case,
    	// skip "-c". If it's not "-Wl,", then we are testing the compiler and can
    	// omit the linking step with "-c".
    	//
    	// Using the same CFLAGS/LDFLAGS here and for building the program.
    
    	// On the iOS builder the command
    	//   $CC -Wl,--no-gc-sections -x c - -o /dev/null < /dev/null
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top