Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 671 for dumpbv (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/debug/dump.go

    limitations under the License.
    */
    
    package debug
    
    import (
    	"time"
    
    	"k8s.io/apiserver/pkg/endpoints/request"
    	flowcontrolrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    )
    
    // QueueSetDump is an instant dump of queue-set.
    type QueueSetDump struct {
    	Queues                     []QueueDump
    	QueuelessExecutingRequests []RequestDump
    	Waiting                    int
    	Executing                  int
    	SeatsInUse                 int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/dump/dump.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package dump
    
    import (
    	"github.com/davecgh/go-spew/spew"
    )
    
    var prettyPrintConfig = &spew.ConfigState{
    	Indent:                  "  ",
    	DisableMethods:          true,
    	DisablePointerAddresses: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * Path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
        @Nullable
        @Optional
        @LocalState
        public File getClassDumpDir() {
            return classDumpDir;
        }
    
        /**
         * Sets path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

      // A hook that may be overridden by a derived config that checks if the IR
      // of 'operation' should be dumped *before* the pass 'pass' has been
      // executed. If the IR should be dumped, 'print_callback' should be invoked
      // with the stream to dump into.
      void printBeforeIfEnabled(mlir::Pass* pass, mlir::Operation* op,
                                PrintCallbackFn print_callback) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      // Regular expression that matches the names of passes in pascal case (e.g.,
      // FooPass) before/after which MLIR will be dumped. Effective only if
      // ir_dump_dir is not empty.
      optional string ir_dump_pass_regex = 2 [default = ".*"];
    
      // Regular expression that matches the names of functions to be dumped. MLIR
      // modules are dumped only if there's at least one public function in 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)
Back to top