Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 743 for dumpms (0.1 sec)

  1. src/encoding/gob/dump.go

    import (
    	"encoding/gob"
    	"fmt"
    	"os"
    )
    
    func main() {
    	var err error
    	file := os.Stdin
    	if len(os.Args) > 1 {
    		file, err = os.Open(os.Args[1])
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "dump: %s\n", err)
    			os.Exit(1)
    		}
    		defer file.Close()
    	}
    	gob.Debug(file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:39:09 UTC 2024
    - 579 bytes
    - Viewed (0)
  2. src/go/build/testdata/empty/dummy

    Jens Frederich <******@****.***> 1413343498 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 15 03:24:58 UTC 2014
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/debug/debug_options.proto

    // Additional parameters that control the debug behavior of the Converter.
    //
    // Next ID: 9
    message DebugOptions {
      // If not empty, dumps MLIR to the specified directory. The initial state of
      // the MLIR after import will be dumped at the beginning of each pass manager
      // run. Additionally, MLIR will be dumped before and after each pass
      // depending on pass names and functions matched using the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/test/framework/runtime.go

    	}
    	return &runtime{
    		context: ctx,
    	}, nil
    }
    
    // Dump state for all allocated resources.
    func (i *runtime) Dump(ctx resource.Context) {
    	i.DumpCustom(ctx, true)
    }
    
    // DumpCustom provides custom control over how the global scope is dumped.
    func (i *runtime) DumpCustom(ctx resource.Context, recursive bool) {
    	i.context.globalScope.dump(ctx, recursive)
    }
    
    // suiteContext returns the suiteContext.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 17:50:56 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/covdata/dump.go

    		fmt.Fprintf(os.Stderr, "  \teach function.\n")
    	case debugDumpMode:
    		fmt.Fprintf(os.Stderr, "  go tool covdata debugdump [flags] -i=dir1,dir2\n\n")
    		fmt.Fprintf(os.Stderr, "  \treads coverage data from dir1+dir2 and dumps\n")
    		fmt.Fprintf(os.Stderr, "  \tcontents in human-readable form to stdout, for\n")
    		fmt.Fprintf(os.Stderr, "  \tdebugging purposes.\n")
    	default:
    		panic("unexpected")
    	}
    	Exit(2)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. pkg/test/framework/scope.go

    	}()
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if recursive {
    		for _, c := range s.children {
    			c.dump(ctx, recursive)
    		}
    	}
    	wg := sync.WaitGroup{}
    	for _, c := range s.resources {
    		if d, ok := c.(resource.Dumper); ok {
    			d := d
    			wg.Add(1)
    			go func() {
    				d.Dump(ctx)
    				wg.Done()
    			}()
    		}
    	}
    	wg.Wait()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // in the sponge "Output Files" by looking up the environment to infer
    // the directory path.
    // If the provided path is the string kCrashReproducerStdErr, the data is
    // dumped into the stderr.
    // If the provided path is the string kCrashReproducerCrashAnalysis, the data
    // is dumped to the crash analysis system. Note, environment var
    // `MLIR_CRASH_REPRODUCER_DIRECTORY` can be used to override
    // kCrashReproducerCrashAnalysis settings.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. cluster/log-dump/log-dump.sh

        wait
      fi
    }
    
    # Dumps logs from nodes in the cluster. Linux nodes to dump logs from can be
    # 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=()
    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. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op_stablehlo.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-add-dump-tensor-op='debugger_type=whole_model' | FileCheck --check-prefix=WholeModel %s
    // RUN: tf-quant-opt %s -split-input-file -quant-add-dump-tensor-op='debugger_type=int_per_layer' | FileCheck --check-prefix=IntPerLayer %s
    // RUN: tf-quant-opt %s -split-input-file -quant-add-dump-tensor-op='debugger_type=float_per_layer' | FileCheck --check-prefix=FloatPerLayer %s
    
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top