Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 554 for mdump (0.04 sec)

  1. pkg/scheduler/internal/cache/debugger/dumper.go

    func (d *CacheDumper) dumpNodes(logger klog.Logger) {
    	dump := d.cache.Dump()
    	nodeInfos := make([]string, 0, len(dump.Nodes))
    	for name, nodeInfo := range dump.Nodes {
    		nodeInfos = append(nodeInfos, d.printNodeInfo(name, nodeInfo))
    	}
    	// Extra blank line added between node entries for readability.
    	logger.Info("Dump of cached NodeInfo", "nodes", strings.Join(nodeInfos, "\n\n"))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

                                PrintCallbackFn print_callback) override {
        Dump(pass, print_callback, /*is_before=*/true);
      }
    
      void printAfterIfEnabled(mlir::Pass* pass, mlir::Operation* op,
                               PrintCallbackFn print_callback) override {
        Dump(pass, print_callback, /*is_before=*/false);
      }
    
     private:
      int64_t mlir_pass_count_;
    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. istioctl/pkg/util/configdump/ecds.go

    )
    
    // GetEcdsConfigDump retrieves the extension config dump from the ConfigDump
    func (w *Wrapper) GetEcdsConfigDump() (*admin.EcdsConfigDump, error) {
    	ecdsDumpAny, err := w.getSections(ecds)
    	if err != nil {
    		return nil, err
    	}
    
    	ecdsDump := &admin.EcdsConfigDump{}
    	for _, dump := range ecdsDumpAny {
    		ecds := &admin.EcdsConfigDump{}
    		err = dump.UnmarshalTo(ecds)
    		if err != nil {
    			return nil, err
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/net/http/httputil/example_test.go

    )
    
    func ExampleDumpRequest() {
    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		dump, err := httputil.DumpRequest(r, true)
    		if err != nil {
    			http.Error(w, fmt.Sprint(err), http.StatusInternalServerError)
    			return
    		}
    
    		fmt.Fprintf(w, "%q", dump)
    	}))
    	defer ts.Close()
    
    	const body = "Go is a general-purpose language designed with systems programming in mind."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 20:01:36 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.h

    namespace tensorflow {
    namespace quantization {
    
    // Enables IR printing for `pm`. When the passes are run, each pass will dump to
    // its own file with prefix `file_name_prefix`.
    void EnableIrPrinting(mlir::PassManager &pm,
                          absl::string_view file_name_prefix);
    
    // If verbosity level >= 1, this will dump intermediate IRs of passes to a file.
    // The dumped mlir files with be under a directory determined by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. istioctl/pkg/util/configdump/secret.go

    	extapi "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    )
    
    // GetSecretConfigDump retrieves a secret dump from a config dump wrapper
    func (w *Wrapper) GetSecretConfigDump() (*admin.SecretsConfigDump, error) {
    	secretDumpAny, err := w.getSection(secrets)
    	if err != nil {
    		return nil, err
    	}
    	secretDump := &admin.SecretsConfigDump{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 25 04:09:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/interface.go

    	// nodeinfo.Node() is guaranteed to be not nil for all the nodes in the snapshot.
    	UpdateSnapshot(logger klog.Logger, nodeSnapshot *Snapshot) error
    
    	// Dump produces a dump of the current cache.
    	Dump() *Dump
    }
    
    // Dump is a dump of the cache state.
    type Dump struct {
    	AssumedPods sets.Set[string]
    	Nodes       map[string]*framework.NodeInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    //
    //	$ rm -f dump.txt
    //	$ go build -o foo.a -gcflags=-d=dumpinlfuncprops=dump.txt foo.go
    //	$ rm -f dump.txt foo.a
    //	$ go build -o foo.a -gcflags=-d=dumpinlfuncprops=dump.txt foo.go
    //	$ ls foo.a dump.txt > /dev/null
    //	ls : cannot access 'dump.txt': No such file or directory
    //	$
    //
    // For this reason, pick a unique filename for the dump, so as to
    // defeat the caching.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.template.gen.yaml

              runAsNonRoot: true
            {{- end }}
          {{ end -}}
          {{- if eq (annotation .ObjectMeta `sidecar.istio.io/enableCoreDump` .Values.global.proxy.enableCoreDump) "true" }}
          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-dump_test.go

    				t.Fatal(err)
    			}
    			if !util.IsYAMLEqual(got, want) {
    				t.Errorf("profile-dump command(%s): got:\n%s\n\nwant:\n%s\nDiff:\n%s\n", tt.desc, got, want, util.YAMLDiff(got, want))
    			}
    		})
    	}
    }
    
    func runProfileDump(profilePath, configPath string, chartSource chartSourceType, outfmt string) (string, error) {
    	cmd := "profile dump -f " + profilePath
    	if configPath != "" {
    		cmd += " --config-path " + configPath
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 11:44:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top