Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for dumphdr (0.16 sec)

  1. src/go/doc/testdata/testing.go

    		}
    	}
    	return s
    }
    
    // T is a type passed to Test functions to manage test state and support formatted test logs.
    // Logs are accumulated during execution and dumped to standard error when done.
    type T struct {
    	common
    	name          string    // Name of test.
    	startParallel chan bool // Parallel tests will wait on this.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/get_compiler_ir.cc

      build_options.mutable_debug_options()->set_xla_detailed_logging(
          options.detailed_logging);
      // If the embed_ir_in_executable is set, hlo_proto will be dumped in
      // executable. The hlo_proto contains HLO modules and buffer assignment.
      build_options.mutable_debug_options()->set_xla_embed_ir_in_executable(
          xla_embed_ir_in_executable);
      TF_ASSIGN_OR_RETURN(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/config.go

    	// before running tests.
    	DeployEastWestGW bool
    
    	// DumpKubernetesManifests will cause Kubernetes YAML generated by istioctl install/generate to be dumped to artifacts.
    	DumpKubernetesManifests bool
    
    	// IstiodlessRemotes makes remote clusters run without istiod, using webhooks/ca from the primary cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      if (!status.ok()) {
        LOG(WARNING) << "error writing to file '" << prefix
                     << "': " << status.message();
        return;
      }
      (void)file_writer->Close();
      VLOG(1) << "Dumped MLIR module to " << prefix;
    }
    
    MlirOptimizationPassRegistry& MlirOptimizationPassRegistry::Global() {
      static auto* global = new MlirOptimizationPassRegistry();
      return *global;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.cc

                "multiple cpu devices."),
           Flag("tf_dump_graphs_in_tfg", &use_tfg_graph_dumper,
                "When tf_dump_graphs_in_tfg is true, graphs after transformations "
                "are dumped in MLIR TFG dialect and not in GraphDef"),
           Flag("tf_mlir_enable_tpu_variable_runtime_reformatting_pass",
                &enable_tpu_variable_runtime_reformatting_pass,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. .space/CODEOWNERS

    /plugins/android-extensions/ "Kotlin Compiler Core"
    /plugins/assign-plugin/ "Kotlin Compiler Core"
    /plugins/atomicfu/ "Kotlin Libraries"
    /plugins/compose/ Compose
    /plugins/fir-plugin-prototype/ "Kotlin Compiler Core"
    /plugins/imports-dumper/ "Kotlin Compiler Core"
    /plugins/jvm-abi-gen/ "Kotlin JVM"
    /plugins/kapt3/ "Kotlin Compiler Core"
    /plugins/kapt3/kapt3-compiler/test/ "Kotlin Compiler Core" "Kotlin JVM"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. tests/integration/README.md

    behavior. Specifically, more verbose logging output will be displayed, some of the timeout values will be more relaxed, and
    additional diagnostic data will be dumped into the working directory at the end of the test execution.
    
    The flag is not enabled by default to provide a better U/X when running tests locally (i.e. additional logging can clutter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/testing/benchmark.go

    // The other reporting methods, such as the variations of Log and Error,
    // may be called simultaneously from multiple goroutines.
    //
    // Like in tests, benchmark logs are accumulated during execution
    // and dumped to standard output when done. Unlike in tests, benchmark logs
    // are always printed, so as not to hide output whose existence may be
    // affecting benchmark results.
    type B struct {
    	common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. cluster/log-dump/log-dump.sh

    # specified via $1 or $use_custom_instance_list. If not specified then the nodes
    # to dump logs for will be detected using detect-node-names(); if Windows nodes
    # are present then they will be detected and their logs will be dumped too.
    function dump_nodes() {
      local node_names=()
      local windows_node_names=()
      if [[ -n "${1:-}" ]]; then
        echo 'Dumping logs for nodes provided as args to dump_nodes() function'
        node_names=( "$@" )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/kube.go

    	componentDeployTimeout = retry.Timeout(1 * time.Minute)
    	componentDeployDelay   = retry.BackoffDelay(200 * time.Millisecond)
    
    	_ io.Closer       = &istioImpl{}
    	_ Instance        = &istioImpl{}
    	_ resource.Dumper = &istioImpl{}
    )
    
    type istioImpl struct {
    	id                   resource.ID
    	cfg                  Config
    	ctx                  resource.Context
    	env                  *kube.Environment
    	externalControlPlane bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top