Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 440 for dumpgs (0.41 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. 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)
  3. 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)
  4. 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)
  5. 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)
  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. pilot/pkg/xds/debug.go

    							}
    						}
    						dumps[resourceType] = append(dumps[resourceType], &discoveryv3.Resource{
    							Name:     w.Config.Name,
    							Resource: protoconv.MessageToAny(w),
    						})
    					default:
    						dumps[resourceType] = append(dumps[resourceType], rr)
    					}
    				default:
    					dumps[resourceType] = append(dumps[resourceType], rr)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top