Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 191 for mdump (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    		t.Errorf("%s", dump.Pretty(original))
    		t.Errorf("%s", dump.Pretty(object))
    		return
    	}
    
    	// encode (serialize) the deep copy using the provided codec
    	data, err := runtime.Encode(codec, object)
    	if err != nil {
    		if runtime.IsNotRegisteredError(err) {
    			t.Logf("%v: not registered: %v (%s)", name, err, dump.Pretty(object))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  2. src/encoding/gob/debug.go

    	wireType       map[typeId]*wireType
    	tmp            []byte // scratch space for decoding uints.
    }
    
    // dump prints the next nBytes of the input.
    // It arranges to print the output aligned from call to
    // call, to make it easy to see what has been consumed.
    func (deb *debugger) dump(format string, args ...any) {
    	if !dumpBytes {
    		return
    	}
    	fmt.Fprintf(os.Stderr, format+" ", args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. pkg/test/framework/testcontext.go

    		// make sure we dump suite-level/top-level resources, but don't dump sibling tests or their children
    		for _, scope := range c.topLevelScopes() {
    			scope.dump(c, false)
    		}
    		c.scope.dump(c, true)
    		scopes.Framework.Debugf("Completed dumping testContext: %q", c.id)
    	} else {
    		scopes.Framework.Debugf("Begin skipping dump of testContext: %q. Maximum number of test dumps exceeded", c.id)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/istioctl_test.go

    			g.Expect(jsonOutput).To(HaveKey("dynamicActiveSecrets"))
    			dump := &admin.SecretsConfigDump{}
    			if err := protomarshal.Unmarshal([]byte(output), dump); err != nil {
    				t.Fatal(err)
    			}
    			if len(dump.DynamicWarmingSecrets) > 0 {
    				t.Fatalf("found warming secrets: %v", output)
    			}
    			if len(dump.DynamicActiveSecrets) != 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/dump_test.go

    	if len(expectedNodes) != len(actualNodes) {
    		t.Fatal(dump.Pretty(actualNodes))
    	}
    	for i := range expectedNodes {
    		currExpected := expectedNodes[i]
    		currActual := actualNodes[i]
    		if currExpected.uid != currActual.uid {
    			t.Errorf("expected %v, got %v", dump.Pretty(currExpected), dump.Pretty(currActual))
    		}
    	}
    	if len(expectedEdges) != len(actualEdges) {
    		t.Fatal(dump.Pretty(actualEdges))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

    			case jsonOutput, yamlOutput:
    				var dump []byte
    				var err error
    				if len(args) == 1 {
    					podName, podNamespace, err := getPodName(ctx, args[0])
    					if err != nil {
    						return err
    					}
    					dump, err = extractConfigDump(kubeClient, podName, podNamespace, true)
    					if err != nil {
    						return err
    					}
    				} else {
    					dump, err = readFile(configDumpFile)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

      return filepath;
    }
    
    std::string GetDumpDirFromEnvVar() {
      const char* prefix_env = getenv("TF_DUMP_GRAPH_PREFIX");
      if (!prefix_env) {
        LOG(WARNING)
            << "Failed to dump MLIR module because dump location is not "
            << "specified through TF_DUMP_GRAPH_PREFIX environment variable.";
        return "";
      }
    
      std::string result = prefix_env;
    
      if (absl::EqualsIgnoreCase(result, "sponge") &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pilot/pkg/xds/debug.go

    		return
    	}
    
    	dump := s.getConfigDumpByResourceType(con, nil, []string{v3.ExtensionConfigurationType})
    	if len(dump[v3.ExtensionConfigurationType]) == 0 {
    		w.WriteHeader(http.StatusNotFound)
    		return
    	}
    	writeJSON(w, dump[v3.ExtensionConfigurationType], req)
    }
    
    // ConfigDump returns information in the form of the Envoy admin API config dump for the specified proxy
    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. src/cmd/covdata/tool_test.go

    							check.tag, m[1])
    					}
    				}
    				break
    			}
    		}
    		if !found && !check.negate {
    			t.Errorf("dump output regexp match failed for %s", check.tag)
    			bad = true
    		}
    	}
    	if bad {
    		fmt.Printf("output from 'dump' run:\n")
    		dumplines(lines)
    	}
    }
    
    func testMergeSimple(t *testing.T, s state, indir1, indir2, tag string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. src/net/http/httputil/dump_test.go

    			return req
    		}
    
    		if tt.WantDump != "" {
    			req := freshReq(tt)
    			dump, err := DumpRequest(req, !tt.NoBody)
    			if err != nil {
    				t.Errorf("DumpRequest #%d: %s\nWantDump:\n%s", i, err, tt.WantDump)
    				continue
    			}
    			if string(dump) != tt.WantDump {
    				t.Errorf("DumpRequest %d, expecting:\n%s\nGot:\n%s\n", i, tt.WantDump, string(dump))
    				continue
    			}
    		}
    
    		if tt.MustError {
    			req := freshReq(tt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top