Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for Summarize (0.13 sec)

  1. hack/verify-e2e-test-ownership.sh

        echo "about to  ${results_jq}..."
        cat -n "${results_jq}"
        echo
      fi
      <"${spec_summaries}" jq --slurp --from-file "${results_jq}" > "${results_json}"
    }
    
    # summarize e2e test policy results
    # output to ${summary_json}
    function generate_summary_json() {
      summary_jq=${tmpdir}/summary.jq
      cat >"${summary_jq}" <<EOS
      . as \$results |
      # for each policy category
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    Gradle lets us know the outcome of each task in the console output:
    
    - `FROM-CACHE` - tasks have been fetched from the local build cache.
    - `UP-TO-DATE` - tasks that used incremental build and were not re-run.
    
    To summarize:
    
    1. First, we used the `build` task to populate our local cache with task inputs and outputs -- we can imagine this was done a week ago.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.cc

        return methods_.summarize != nullptr;
      }
    
      Status SummarizeValue(std::string& summary) const override {
        if (methods_.summarize == nullptr) {
          return tensorflow::CustomDeviceTensorHandle::SummarizeValue(summary);
        }
        TF_Status c_status;
        std::unique_ptr<TF_Buffer, decltype(&TF_DeleteBuffer)> summary_buffer(
            methods_.summarize(data_, &c_status), TF_DeleteBuffer);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

      %3 = "tf.StringFormat"(%2) {__op_key = 1: i32, device = "/job:localhost/replica:0/task:0/device:CPU:0", placeholder = "{}", strtemplate = "%s", summarize = 3 : i64, template = "Outside compiled {}"} : (tensor<i32>) -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. src/runtime/mpagealloc.go

    		y := p.chunkOf(sc).summarize()
    		if x == y {
    			return
    		}
    		p.summary[len(p.summary)-1][sc] = y
    	} else if contig {
    		// Slow contiguous path: the allocation spans more than one chunk
    		// and at least one summary is guaranteed to change.
    		summary := p.summary[len(p.summary)-1]
    
    		// Update the summary for chunk sc.
    		summary[sc] = p.chunkOf(sc).summarize()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    val currentFingerprint = host.fingerprintOf(fileSystemInputs)
                    if (currentFingerprint != fileSystemInputsFingerprint) {
                        // TODO: summarize what has changed (see https://github.com/gradle/configuration-cache/issues/282)
                        return "an input to $workDisplayName has changed"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device.cc

      TFE_CustomDeviceTensorHandleMethods handle_methods;
      handle_methods.num_dims = &ParallelTensorNumDims;
      handle_methods.dim = &ParallelTensorDim;
      handle_methods.deallocator = &ParallelTensorDeallocator;
      handle_methods.summarize = &ParallelTensorSummarize;
      return TensorHandlePtr(TFE_NewCustomDeviceTensorHandle(
          context, parallel_device_name.c_str(), t_released->dtype(), t_released,
          handle_methods, status));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. src/cmd/trace/regions.go

    )
    
    // UserRegionsHandlerFunc returns a HandlerFunc that reports all regions found in the trace.
    func UserRegionsHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		// Summarize all the regions.
    		summary := make(map[regionFingerprint]regionStats)
    		for _, g := range t.summary.Goroutines {
    			for _, r := range g.Regions {
    				id := fingerprintRegion(r)
    				stats, ok := summary[id]
    				if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. docs/security/README.md

    - `context_values`: are values like the bucket and object name and other information which should be cryptographically bound to the KEK.
    
    To summarize for any encrypted object there exists (at least) three different keys:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  10. src/runtime/export_test.go

    func (b *PallocBits) Free(i, n uint)             { (*pallocBits)(b).free(i, n) }
    func (b *PallocBits) Summarize() PallocSum       { return PallocSum((*pallocBits)(b).summarize()) }
    func (b *PallocBits) PopcntRange(i, n uint) uint { return (*pageBits)(b).popcntRange(i, n) }
    
    // SummarizeSlow is a slow but more obviously correct implementation
    // of (*pallocBits).summarize. Used for testing.
    func SummarizeSlow(b *PallocBits) PallocSum {
    	var start, most, end uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top