Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for dumphdr (0.14 sec)

  1. src/runtime/heapdump.go

    				}
    			}
    			n--
    			buf[n] = 'x'
    			n--
    			buf[n] = '0'
    			n--
    			buf[n] = '('
    			dumpslice(buf[n:])
    			dumpstr("?")
    			dumpint(0)
    		} else {
    			dumpstr(funcname(f))
    			if i > 0 && pc > f.entry() {
    				pc--
    			}
    			file, line := funcline(f, pc)
    			dumpstr(file)
    			dumpint(uint64(line))
    		}
    	}
    	dumpint(uint64(allocs))
    	dumpint(uint64(frees))
    }
    
    func dumpmemprof() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // FILE: data/PodcastWithExtraInfo.kt
    package data
    
    class PodcastWithExtraInfo {
        lateinit var url: String
        lateinit var lastEpisodeDate: kotlin.time.TimeSource?
            set(value) {
                field = value
            }
        init {
            lastEpisodeDate = null
            url = ""
        }
    
        operator fun component1() = url
        operator fun component2() = lastEpisodeDate
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 595 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprInitializer.kt

    // WITH_FIR_TEST_COMPILER_PLUGIN
    // DUMP_IR
    
    // FILE: data/PodcastWithExtraInfo.kt
    package data
    
    class PodcastWithExtraInfo {
        lateinit var url: String
        var lastEpisodeDate: kotlin.time.TimeSource? = null
        operator fun component1() = url
        operator fun component2() = lastEpisodeDate
    }
    
    // FILE: main.kt
    package home
    
    import data.PodcastWithExtraInfo
    
    fun preview(featuredPodcast: PodcastWithExtraInfo) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 470 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * Path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
        @Nullable
        @Optional
        @LocalState
        public File getClassDumpDir() {
            return classDumpDir;
        }
    
        /**
         * Sets path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top