Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for 05 (0.19 sec)

  1. src/cmd/go/alldocs.go

    //   - For GOARCH=arm, GOARM=5, 6, and 7
    //     correspond to the arm.5, arm.6, and arm.7 feature build tags.
    //   - For GOARCH=arm64, GOARM64=v8.{0-9} and v9.{0-5}
    //     correspond to the arm64.v8.{0-9} and arm64.v9.{0-5} feature build tags.
    //   - For GOARCH=mips or mipsle,
    //     GOMIPS=hardfloat and softfloat
    //     correspond to the mips.hardfloat and mips.softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    		{bucketName, objectName, uploadIDs[0], 4, "mnop", "e132e96a5ddad6da8b07bba6f6131fef", int64(len("abcd"))},
    		// Part with size larger than 5 MiB.
    		{bucketName, objectName, uploadIDs[0], 5, string(validPart), validPartMD5, int64(len(validPart))},
    		{bucketName, objectName, uploadIDs[0], 6, string(validPart), validPartMD5, int64(len(validPart))},
    
    		// Part with size larger than 5 MiB.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		if !exists {
    			return
    		}
    
    		if bgSeq.lastHealActivity.IsZero() {
    			return
    		}
    
    		metrics = make([]MetricV2, 0, 5)
    		metrics = append(metrics, MetricV2{
    			Description: getHealLastActivityTimeMD(),
    			Value:       float64(time.Since(bgSeq.lastHealActivity)),
    		})
    		metrics = append(metrics, getObjectsScanned(bgSeq)...)
    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. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Setting the threshold to be 50% as a simple cost model heuristic. e.g. If 1
      // out of 2 concat inputs is an exception, we don't apply the hoist. If it's 1
      // out of 3, we do.
      const float exception_pct_threshold = 0.5;
      if (static_cast<float>(op.getValues().size()) * exception_pct_threshold <=
          exceptions.size())
        return failure();
    
      // Compute binary operands hoist parameters.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @LRN(%arg0: tensor<2x3x4x5xf32>) -> tensor<2x3x4x5xf32> {
      %0 = "tf.LRN"(%arg0) {depth_radius = 5 :i64, bias = 1.0 :f32, alpha = 1.0 : f32, beta = 0.5 :f32} : (tensor<2x3x4x5xf32>) -> (tensor<2x3x4x5xf32>)
      func.return %0: tensor<2x3x4x5xf32>
    
      // CHECK-LABEL: LRN
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	case ACMPU:
    		return OPVCC(31, 32, 0, 0) | 1<<21
    	case ACMPW:
    		return OPVCC(31, 0, 0, 0) /* L=0 */
    	case ACMPWU:
    		return OPVCC(31, 32, 0, 0)
    	case ACMPB:
    		return OPVCC(31, 508, 0, 0) /* cmpb - v2.05 */
    	case ACMPEQB:
    		return OPVCC(31, 224, 0, 0) /* cmpeqb - v3.00 */
    
    	case ACNTLZW:
    		return OPVCC(31, 26, 0, 0)
    	case ACNTLZWCC:
    		return OPVCC(31, 26, 0, 1)
    	case ACNTLZD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    The predeclared value <code>nil</code> cannot be used to initialize a variable
    with no explicit type.
    </p>
    
    <pre>
    var d = math.Sin(0.5)  // d is float64
    var i = 42             // i is int
    var t, ok = x.(T)      // t is T, ok is bool
    var n = nil            // illegal
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "linewidth": 1, "links": [], "nullPointMode": "null", "percentage": false, "pointradius": 2, "points": false, "renderer": "flot", "seriesOverrides": [], "spaceLength": 10, "stack": false, "steppedLine": false, "targets": [ { "expr": "histogram_quantile(0.5, sum(rate(pilot_proxy_convergence_time_bucket[1m])) by (le))", "format": "time_series", "intervalFactor": 1, "legendFormat": "p50 ", "refId": "A" }, { "expr": "histogram_quantile(0.9, sum(rate(pilot_proxy_convergence_time_bucket[1m])) by (le))", "format":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top