Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 191 for mdump (0.22 sec)

  1. guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        CacheTesting.checkValidState(cache);
      }
    
      /**
       * With an unlimited-size cache with maxWeight of 0, entries weighing 0 should still be cached.
       * Entries with positive weight should not be cached (nor dump existing cache).
       */
      public void testEviction_maxWeight_zero() {
        CountingRemovalListener<Integer, Integer> removalListener = countingRemovalListener();
        IdentityLoader<Integer> loader = identityLoader();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

      auto device_attr = op->getAttrOfType<mlir::StringAttr>(kDeviceAttr);
      return device_attr ? device_attr.getValue() : "";
    }
    
    // Print operation with debug info (to get line number info for debugging)
    void dump(StringRef message, Operation* op) {
      llvm::dbgs() << message;
      op->print(llvm::dbgs(), OpPrintingFlags().enableDebugInfo(
                                  /*enable=*/true, /*prettyForm=*/true));
      llvm::dbgs() << "\n";
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_fr.properties

    errors.could_not_delete_logged_in_user=Impossible de supprimer l'utilisateur connecté.
    errors.unauthorized_request=Requête non autorisée.
    errors.failed_to_print_thread_dump=Impossible d'afficher le dump du thread.
    errors.file_is_not_supported={0} n'est pas pris en charge.
    errors.plugin_file_is_not_found={0} est introuvable.
    errors.failed_to_install_plugin=Échec de l'installation de {0}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    // odml_to_stablehlo /path/to/model -o=model.mlir
    // 2) convert the input model to TFLite Flatbuffer
    // odml_to_stablehlo /path/to/model -o=model.tflite --export-type=tflite
    //
    // TODO(pulkitb): Add more options.
    //  * Verbose - dump intermediate translations.
    //  * Choose specific signatures/functions from a saved model.
    //  * Options for full/partial conversion, Op exceptions list.
    //  * Option to serialize output to TFL flatbuffer format.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // versions. By doing so, the quantization will be applied to the given input.
    // mlir_dump_file_prefix is an optional field that is used for debugging to save
    // mlir dump files.
    std::unique_ptr<OperationPass<ModuleOp>> CreateQuantizeCompositeFunctionsPass(
        tensorflow::quantization::QuantizationMethod::PresetMethod
            quantization_method,
        tensorflow::quantization::OpSet target_opset,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/runtime/tracestack.go

    	return id
    }
    
    // dump writes all previously cached stacks to trace buffers,
    // releases all memory and resets state. It must only be called once the caller
    // can guarantee that there are no more writers to the table.
    func (t *traceStackTable) dump(gen uintptr) {
    	stackBuf := make([]uintptr, traceStackSize)
    	w := unsafeTraceWriter(gen, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/fuse_tpu_compile_and_execute_ops.mlir

    // RUN: tf-tfrt-opt -verify-diagnostics -split-input-file -tfrt-fuse-tpu-compile-and-execute-ops -canonicalize %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    module attributes {tf_saved_model.semantics} {
    
    // Test fusing _TPUCompileMlirOp and TPUExecuteOp into TPUCompileMlirAndExecuteOp.
    
    // CHECK-LABEL: func private @test_fuse_tpu_ops
    func.func private @test_fuse_tpu_ops(%arg0: tensor<*xi32>, %arg1: tensor<*x!tf_type.resource>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/runtime/debug/garbage.go

    // it to the given file descriptor.
    //
    // WriteHeapDump suspends the execution of all goroutines until the heap
    // dump is completely written.  Thus, the file descriptor must not be
    // connected to a pipe or socket whose other end is in the same Go
    // process; instead, use a temporary file or network socket.
    //
    // The heap dump format is defined at https://golang.org/s/go15heapdump.
    func WriteHeapDump(fd uintptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

    limitations under the License.
    */
    
    package jsonmergepatch
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	jsonpatch "gopkg.in/evanphx/json-patch.v4"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/json"
    	"sigs.k8s.io/yaml"
    )
    
    type FilterNullTestCases struct {
    	TestCases []FilterNullTestCase
    }
    
    type FilterNullTestCase struct {
    	Description         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            def initScript = "init-script.gradle"
            file(initScript) << getCiInjectionScriptContent(ci)
    
            // URL is not relevant as long as it's valid due to the `-Dscan.dump` parameter
            file("gradle.properties") << """
                systemProp.${ci.propPrefix}.gradle-enterprise.plugin.version=$pluginVersion
                systemProp.${ci.propPrefix}.init-script.name=$initScript
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top