Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for dumphdr (0.16 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget2.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    // CHECK_CALLS_WITH_ANNOTATION: org.jetbrains.kotlin.fir.plugin.MyComposable
    
    // MODULE: main
    // FILE: main.kt
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p3.foo
    
    @MyComposable
    fun Greeting(): String {
        return "Hi $foo!"
    }
    
    // FILE: p3/foo.kt
    package p3
    
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    
    private var foo_ = 0
    
    fun setFoo(newFoo: Int) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 486 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule3.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
    fun Scaffold(x: @MyComposable () -> (@MyComposable () -> Unit)) {
    }
    
    // MODULE: main(lib)
    // FILE: main.kt
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p3.Scaffold
    
    @MyComposable
    private fun TopAppBar(title: String) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 527 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule2.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
    fun Scaffold(bars: List<@MyComposable () -> Unit>) {
    }
    
    // MODULE: main(lib)
    // FILE: main.kt
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    import p3.Scaffold
    
    @MyComposable
    private fun TopAppBar(title: String) {
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 587 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // in the sponge "Output Files" by looking up the environment to infer
    // the directory path.
    // If the provided path is the string kCrashReproducerStdErr, the data is
    // dumped into the stderr.
    // If the provided path is the string kCrashReproducerCrashAnalysis, the data
    // is dumped to the crash analysis system. Note, environment var
    // `MLIR_CRASH_REPRODUCER_DIRECTORY` can be used to override
    // kCrashReproducerCrashAnalysis settings.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/data_dumper_logger_config.cc

      std::unique_ptr<llvm::raw_ostream> os;
      std::string filepath;
      if (tensorflow::CreateFileForDumping(filename, &os, &filepath).ok()) {
        print_callback(*os);
        LOG(INFO) << "Dumped MLIR module to " << filepath;
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 00:41:24 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_test.go

    		written += int64(n)
    		if err != nil {
    			return written, err
    		}
    		dumper := hex.Dumper(w)
    		n, err = dumper.Write(flow)
    		written += int64(n)
    		if err != nil {
    			return written, err
    		}
    		err = dumper.Close()
    		if err != nil {
    			return written, err
    		}
    		clientToServer = !clientToServer
    	}
    	return written, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

        private final File outputFile;
        private final PrintStream output;
    
        public JavaProcessStackTracesMonitor(File dumpDir) {
            try {
                String timestamp = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd-HH-mm-ss"));
                this.outputFile = new File(dumpDir, timestamp + ".threaddump");
                this.output = new PrintStream(outputFile);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/encoding/hex/example_test.go

    }
    
    func ExampleDumper() {
    	lines := []string{
    		"Go is an open source programming language.",
    		"\n",
    		"We encourage all Go users to subscribe to golang-announce.",
    	}
    
    	stdoutDumper := hex.Dumper(os.Stdout)
    
    	defer stdoutDumper.Close()
    
    	for _, line := range lines {
    		stdoutDumper.Write([]byte(line))
    	}
    
    	// Output:
    	// 00000000  47 6f 20 69 73 20 61 6e  20 6f 70 65 6e 20 73 6f  |Go is an open so|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 10 21:40:16 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.h

    void EnableIrPrinting(mlir::PassManager &pm,
                          absl::string_view file_name_prefix);
    
    // If verbosity level >= 1, this will dump intermediate IRs of passes to a file.
    // The dumped mlir files with be under a directory determined by
    // the TF_QUANT_MLIR_DUMP_PREFIX env variable. The PassManager will dump to a
    // new file for each pass. The file name will have the format
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/auto_clustering_test_helper.h

    //
    // If auto-clustering is enabled this should produce files named
    // before_mark_for_compilation_<N>.pbtxt in the temporary directory.  As the
    // file name suggests, these are graphdefs that have been dumped right before
    // the mark_for_compilation pass.  There should be one
    // before_mark_for_compilation_<N>.pbtxt for every TF graph that was
    // auto-clustered, out of which usually only one is the "main" graph that's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top