Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 131 for dumpling (0.24 sec)

  1. pkg/test/framework/components/istio/installer.go

    		scopes.Framework.Errorf("Unable to create directory for dumping install manifests: %v", err)
    	}
    	for clusterName, manifests := range i.manifests {
    		clusterDir := path.Join(manifestsDir, clusterName)
    		if err := os.Mkdir(manifestsDir, 0o700); err != nil {
    			scopes.Framework.Errorf("Unable to create directory for dumping %s install manifests: %v", clusterName, err)
    		}
    		for i, manifest := range manifests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/debug/debug.cc

        // Open the file for dumping. Failures are logged instead of being
        // propagated to the client because they are non-fatal.
    
        std::unique_ptr<tsl::WritableFile> file;
        if (auto status = tsl::Env::Default()->NewWritableFile(filename, &file);
            !status.ok()) {
          LOG(ERROR) << "Unable to open '" << filename
                     << "' for dumping TFLite MLIR output: " << status;
          return;
        }
    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. pkg/test/framework/components/namespace/namespace.go

    	Inject bool
    	// Revision is the namespace of custom injector instance
    	Revision string
    	// Labels to be applied to namespace
    	Labels map[string]string
    	// SkipDump, if enabled, will disable dumping the namespace. This is useful to avoid duplicate
    	// dumping of istio-system.
    	SkipDump bool
    	// SkipCleanup, if enabled, the namespace will not be deleted during cleanup. Used for istio-system namespace
    	SkipCleanup bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. releasenotes/notes/46711.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    
    issue:
      - 46653
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 02:54:34 UTC 2023
    - 195 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.h

    #include "llvm/ADT/StringRef.h"
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    // Setup the input pass manager to enable IR dumping after each pass.
    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(mlir::PassManager& pm,
                              const std::string& dump_group_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/profile.go

    // limitations under the License.
    
    package mesh
    
    import (
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // ProfileCmd is a group of commands related to profile listing, dumping and diffing.
    func ProfileCmd(_ cli.Context) *cobra.Command {
    	pc := &cobra.Command{
    		Use:   "profile",
    		Short: "Commands related to Istio configuration profiles",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/covdata/tool_test.go

    	want0 := "mode: set"
    	if lines[0] != want0 {
    		dumplines(lines[0:10])
    		t.Errorf("textfmt: want %s got %s", want0, lines[0])
    	}
    	want1 := mainPkgPath + "/prog1.go:13.14,15.2 1 1"
    	if lines[1] != want1 {
    		dumplines(lines[0:10])
    		t.Errorf("textfmt: want %s got %s", want1, lines[1])
    	}
    }
    
    func dumplines(lines []string) {
    	for i := range lines {
    		fmt.Fprintf(os.Stderr, "%s\n", lines[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinGccProducedBinaryInfo.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.binaryinfo
    /**
     * Binary information for GCC produced binaries. It approximate features required by our tests using dumpbin.exe from Visual Studio. It's not the right solution, but it works for most cases.
     */
    class DumpbinGccProducedBinaryInfo extends DumpbinBinaryInfo {
        private final List<String> environments
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. samples/bookinfo/src/details/details.rb

      incoming_headers = [
          # All applications should propagate x-request-id. This header is
          # included in access log statements and is used for consistent trace
          # sampling and log sampling decisions in Istio.
          'x-request-id',
    
          # Lightstep tracing header. Propagate this if you use lightstep tracing
          # in Istio (see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.cc

    #include "tensorflow/core/util/debug_data_dumper.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    using mlir::PassManager;
    
    // Setup the input pass manager to enable IR dumping after each pass.
    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(PassManager& pm, const std::string& dump_group_name,
                              llvm::StringRef module_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top