Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for dumphdr (0.1 sec)

  1. pkg/test/framework/runtime.go

    //  limitations under the License.
    
    package framework
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var _ resource.Dumper = &runtime{}
    
    // runtime for the test environment.
    type runtime struct {
    	context *suiteContext
    }
    
    // newRuntime returns a new runtime instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 17:50:56 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/debugger/dumper.go

    Mengjiao Liu <******@****.***> 1679485684 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

        const absl::string_view dump_file_name) {
      const absl::StatusOr<std::string> dump_dir = GetMlirDumpDir();
      if (!dump_dir.ok()) {
        return dump_dir.status();
      }
    
      auto* env = tsl::Env::Default();
      TF_RETURN_IF_ERROR(env->RecursivelyCreateDir(*dump_dir));
    
      const std::string dump_file_path =
          tsl::io::JoinPath(*dump_dir, dump_file_name);
      TF_ASSIGN_OR_RETURN(std::unique_ptr<llvm::raw_ostream> file,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/encoding/hex/hex_test.go

    		}
    	}
    }
    
    func TestDumper_doubleclose(t *testing.T) {
    	var out strings.Builder
    	dumper := Dumper(&out)
    
    	dumper.Write([]byte(`gopher`))
    	dumper.Close()
    	dumper.Close()
    	dumper.Write([]byte(`gopher`))
    	dumper.Close()
    
    	expected := "00000000  67 6f 70 68 65 72                                 |gopher|\n"
    	if out.String() != expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/debug/debug_test.cc

      pm.addPass(std::make_unique<AlwaysFailPass>());
      ASSERT_TRUE(mlir::failed(pm.run(*module_)));
    
      std::string dump_dir;
      TF_ASSERT_OK(GetDumpDir(&dump_dir));
    
      std::string mlir_dump;
      TF_ASSERT_OK(tsl::ReadFileToString(
          tsl::Env::Default(),
          tsl::io::JoinPath(dump_dir, "tfl_mlir_crash_repro.mlir"), &mlir_dump));
      EXPECT_THAT(mlir_dump, Not(IsEmpty()));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      // Regular expression that matches the names of passes in pascal case (e.g.,
      // FooPass) before/after which MLIR will be dumped. Effective only if
      // ir_dump_dir is not empty.
      optional string ir_dump_pass_regex = 2 [default = ".*"];
    
      // Regular expression that matches the names of functions to be dumped. MLIR
      // modules are dumped only if there's at least one public function in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/encoding/hex/hex.go

    	if len(data) == 0 {
    		return ""
    	}
    
    	var buf strings.Builder
    	// Dumper will write 79 bytes per complete 16 byte chunk, and at least
    	// 64 bytes for whatever remains. Round the allocation up, since only a
    	// maximum of 15 bytes will be wasted.
    	buf.Grow((1 + ((len(data) - 1) / 16)) * 79)
    
    	dumper := Dumper(&buf)
    	dumper.Write(data)
    	dumper.Close()
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/cache/debugger/debugger.go

    	internalqueue "k8s.io/kubernetes/pkg/scheduler/internal/queue"
    )
    
    // CacheDebugger provides ways to check and write cache information for debugging.
    type CacheDebugger struct {
    	Comparer CacheComparer
    	Dumper   CacheDumper
    }
    
    // New creates a CacheDebugger.
    func New(
    	nodeLister corelisters.NodeLister,
    	podLister corelisters.PodLister,
    	cache internalcache.Cache,
    	podQueue internalqueue.SchedulingQueue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

          mlir::OpPrintingFlags op_printing_flags = mlir::OpPrintingFlags());
    
      // A hook that may be overridden by a derived config that checks if the IR
      // of 'operation' should be dumped *before* the pass 'pass' has been
      // executed. If the IR should be dumped, 'print_callback' should be invoked
      // with the stream to dump into.
      void printBeforeIfEnabled(mlir::Pass* pass, mlir::Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // MODULE: lib
    // MODULE_KIND: LibraryBinary
    // FILE: p3/foo.kt
    package p3
    
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    
    @MyComposable
    public fun Foo(
        text: @MyComposable () -> Unit,
    ) {}
    
    // MODULE: main(lib)
    // FILE: main.kt
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p3.Foo
    
    @MyComposable
    public fun Bar() {
        Foo(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 506 bytes
    - Viewed (0)
Back to top