Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for sean (0.09 sec)

  1. src/index/suffixarray/sais2.go

    	// seven lines a few times in this source file. The copies below
    	// refer back to the pattern established by this original as the
    	// "LMS-substring iterator".
    	//
    	// In every scan through the text, c0, c1 are successive characters of text.
    	// In this backward scan, c0 == text[i] and c1 == text[i+1].
    	// By scanning backward, we can keep track of whether the current
    	// position is type-S or type-L according to the usual definition:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	// excludes these objects (and hence only goes up between GCs).
    	//
    	// To reduce contention, this is updated only when obtaining a span
    	// from an mcentral and at this point it counts all of the unallocated
    	// slots in that span (which will be allocated before that mcache
    	// obtains another span from that mcentral). Hence, it slightly
    	// overestimates the "true" live heap size. It's better to overestimate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //
    // When is_training is set to true, the given variance and mean are not used.
    // In above calculation, they are replaced by new values. These new mean and
    // variance are calculated as following:
    // new_mean = mean(x, axis=[0, 1, 2])
    // new_variance = mean(squared_difference(x, new_mean), axis=[0, 1, 2])
    //
    // The DDR rule for the is_training equals true case is as following:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            transformed()
            outputContains("result = [b-blue.jar.green, c.jar.green]")
    
            when:
            succeeds(":a:resolve")
    
            then: // have already seen these artifacts before, but the transform outputs have been overwritten
            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed("b.jar")
            outputContains("result = [b.jar.green, c.jar.green]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                }
    
                class SomeTask extends DefaultTask {
                    private final bean = new SomeBean()
    
                    SomeTask() {
                        bean.gradle = project.gradle
                        bean.nested.gradle = project.gradle
                        bean.nested.project = project
                    }
    
                    @TaskAction
                    void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // CHECK-DAG: %[[CST1:.*]] = arith.constant dense<1.000000e-03> : tensor<f32>
      // CHECK:  %[[MEAN:.*]] = "tf.Mean"(%arg0, %[[CST]]) <{keep_dims = false}> : (tensor<1x1x6x2xf32>, tensor<3xi32>) -> tensor<2xf32>
      // CHECK:  %[[SQ:.*]] = "tf.SquaredDifference"(%arg0, %[[MEAN]]) : (tensor<1x1x6x2xf32>, tensor<2xf32>) -> tensor<1x1x6x2xf32>
      // CHECK:  %[[MEAN0:.*]] = "tf.Mean"(%[[SQ]], %[[CST]]) <{keep_dims = false}> : (tensor<1x1x6x2xf32>, tensor<3xi32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/minio-dashboard.json

          "options": {
            "colorMode": "value",
            "graphMode": "none",
            "justifyMode": "auto",
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
              "values": false
            },
            "showPercentChange": false,
            "text": {},
            "textMode": "auto",
            "wideLayout": true
          },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    // starting with 1 above. See discussion of GC rate below.
    
    // Concurrent sweep.
    //
    // The sweep phase proceeds concurrently with normal program execution.
    // The heap is swept span-by-span both lazily (when a goroutine needs another span)
    // and concurrently in a background goroutine (this helps programs that are not CPU bound).
    // At the end of STW mark termination all spans are marked as "needs sweeping".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/reflect/type.go

    	// In both cases the algorithm is a linear scan over the two
    	// lists - T's methods and V's methods - simultaneously.
    	// Since method tables are stored in a unique sorted order
    	// (alphabetical, with no duplicate method names), the scan
    	// through V's methods must hit a match for each of T's
    	// methods along the way, or else V does not implement T.
    	// This lets us run the scan in overall linear time instead of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then: // no changes, should be up-to-date
            assertTransformationsExecuted()
    
            when:
            run ":app:resolveGreen"
    
            then: // have seen these inputs before
            assertTransformationsExecuted()
        }
    
        def "transform with changed project file dependencies content or path are re-executed"() {
            given:
            setupBuildWithSingleStep()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
Back to top