Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 151 for dumpling (0.18 sec)

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

    		name, n.Node() == nil, n.Requested, n.Allocatable, len(n.Pods)))
    	// Dumping Pod Info
    	for _, p := range n.Pods {
    		nodeData.WriteString(printPod(p.Pod))
    	}
    	// Dumping nominated pods info on the node
    	nominatedPodInfos := d.podQueue.NominatedPodsForNode(name)
    	if len(nominatedPodInfos) != 0 {
    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. pkg/test/framework/components/namespace/kube.go

    	if n.skipDump {
    		scopes.Framework.Debugf("=== Skip dumping Namespace %s State for %v...", n.name, ctx.ID())
    		return
    	}
    	scopes.Framework.Errorf("=== Dumping Namespace %s State for %v...", n.name, ctx.ID())
    
    	d, err := ctx.CreateTmpDirectory(n.name + "-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping %s contents: %v", n.name, err)
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/dumper.go

    package resource
    
    // Dumper is an interface that is implemented by all components that can dump their state. In CI, it is
    // useful to get as much context as possible when a test fails. Dumper allows dumping of state from a test.
    type Dumper interface {
    	Dump(ctx Context)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 14 21:19:42 UTC 2020
    - 861 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top