Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 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/lite/debug/debug.cc

      }
    
      if (dump_to_dir) {
        dump_dir = tsl::io::JoinPath(
            dump_dir, absl::FormatTime("%E4Y%m%d_%H%M%E6S", absl::Now(),
                                       absl::LocalTimeZone()));
    
        // Get a valid file path to dump with.
        tsl::Env* env = tsl::Env::Default();
        if (auto status = env->RecursivelyCreateDir(dump_dir); !status.ok()) {
          LOG(WARNING) << "Failed to create '" << dump_dir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/test/kube/dump.go

    			})
    		}
    	}
    	_ = errG.Wait()
    }
    
    // DumpPods runs each dumper with the selected pods in the given namespace.
    // If selectors is empty, all pods in the namespace will be dumpped.
    // If no dumpers are provided, their resource state, events, container logs and Envoy information will be dumped.
    func DumpPods(ctx resource.Context, workDir, namespace string, selectors []string, dumpers ...PodDumper) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. pkg/volume/downwardapi/downwardapi.go

    	setupSuccess = true
    	return nil
    }
    
    // CollectData collects requested downwardAPI in data map.
    // Map's key is the requested name of file to dump
    // Map's value is the (sorted) content of the field to be dumped in the file.
    //
    // Note: this function is exported so that it can be called from the projection volume driver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

          CompileMlirModule(
              kMlirModuleStr,
              ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_UNSPECIFIED));
    
      // Due to the shared test of this infrastructure, we just need to make sure
      // that the dumped file size is greater than what was originally inside
      // the test directory.
      TF_ASSERT_OK(env->GetChildren(test_dir, &files));
      EXPECT_THAT(files.size(), ::testing::Gt(original_files_size));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. src/cmd/covdata/tool_test.go

    	lines := strings.Split(output, "\n")
    	if len(lines) == 1 && lines[0] == "" {
    		lines = nil
    	}
    	return lines
    }
    
    func testDump(t *testing.T, s state) {
    	// Run the dumper on the two dirs we generated.
    	dargs := []string{"-pkg=" + mainPkgPath, "-live", "-i=" + s.outdirs[0] + "," + s.outdirs[1]}
    	lines := runToolOp(t, s, "debugdump", dargs)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                                     absl::string_view error_message,
                                     toco::GraphVizDumpOptions* dump_options) {
      // Make sure the graphviz file will be dumped under the same folder.
      dump_options->dump_graphviz = toco_flags->conversion_summary_dir();
      // Here we construct the `toco::Model` class based on the input graph def,
      // it will then be used to populate the conversion log.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top