Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for dumphdr (0.27 sec)

  1. 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)
  2. pkg/test/framework/components/namespace/kube.go

    	kube2.DumpDeployments(n.ctx, d, n.name)
    }
    
    var (
    	_ Instance          = &kubeNamespace{}
    	_ io.Closer         = &kubeNamespace{}
    	_ resource.Resource = &kubeNamespace{}
    	_ resource.Dumper   = &kubeNamespace{}
    )
    
    func (n *kubeNamespace) Name() string {
    	return n.name
    }
    
    func (n *kubeNamespace) Prefix() string {
    	return n.prefix
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/net/http/httputil/dump.go

    // an [http.Request]. In particular, the order and case of header field
    // names are lost. The order of values in multi-valued headers is kept
    // intact. HTTP/2 requests are dumped in HTTP/1.x form, not in their
    // original binary representations.
    //
    // If body is true, DumpRequest also returns the body. To do so, it
    // consumes req.Body and then replaces it with a new [io.ReadCloser]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top