Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 554 for mdump (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // spaces) except semicolons.
    //
    // Example: Setting the environment variables
    // `MLIR_BRIDGE_LOG_PASS_FILTER="LegalizeTF;Canonicalizer"` and
    // `MLIR_BRIDGE_LOG_STRING_FILTER="my_string"` will dump IR only for invocations
    // of `LegalizeTF` and `Canonicalizer` where the string `my_string` is contained
    // in the serialized operation on which the pass is invoked. For verbose log
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/internal/trace/reader_test.go

    	"internal/trace/testtrace"
    	"internal/trace/version"
    )
    
    var (
    	logEvents  = flag.Bool("log-events", false, "whether to log high-level events; significantly slows down tests")
    	dumpTraces = flag.Bool("dump-traces", false, "dump traces even on success")
    )
    
    func TestReaderGolden(t *testing.T) {
    	matches, err := filepath.Glob("./testdata/tests/*.test")
    	if err != nil {
    		t.Fatalf("failed to glob for tests: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. istioctl/pkg/util/configdump/cluster.go

    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    // GetDynamicClusterDump retrieves a cluster dump with just dynamic active clusters in it
    func (w *Wrapper) GetDynamicClusterDump(stripVersions bool) (*admin.ClustersConfigDump, error) {
    	clusterDump, err := w.GetClusterConfigDump()
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/cacert_rotation_test.go

    			t.Errorf("failed to retrieve pod secrets from %s, err: %v errOut: %s", podName, err, errOut)
    		}
    
    		dump := []configdump.CertsDump{}
    		if err := json.Unmarshal([]byte(out), &dump); err != nil {
    			t.Errorf("failed to unmarshal secret dump: %v", err)
    		}
    
    		for _, s := range dump {
    			if strings.Contains(s.Identity, serviceAccount) {
    				if len(s.CertChain) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/cluster.go

    	}
    	if c.Port != 0 {
    		p := fmt.Sprintf("|%v|", c.Port)
    		if !strings.Contains(name, p) {
    			return false
    		}
    	}
    	return true
    }
    
    // PrintClusterSummary prints a summary of the relevant clusters in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintClusterSummary(filter ClusterFilter) error {
    	w, clusters, err := c.setupClusterConfigWriter()
    	if err != nil {
    		return err
    	}
    	if includeConfigType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/secretbox/secretbox_test.go

    				case l == 0:
    					if len(result) != 0 {
    						t.Errorf("Round trip failed len=%d\noriginal:\n%s\nresult:\n%s", l, hex.Dump(original), hex.Dump(result))
    					}
    				case !reflect.DeepEqual(original, result):
    					t.Errorf("Round trip failed len=%d\noriginal:\n%s\nresult:\n%s", l, hex.Dump(original), hex.Dump(result))
    				}
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 16:31:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.h

    Status DumpTextualIRToFile(const MlirDumpConfig& config, const Graph& graph,
                               const FunctionLibraryDefinition* flib_def,
                               WritableFile* file);
    
    // Config of the textual dump.
    struct MlirDumpConfig {
      enum class Dialect {
        // Tensorflow Graph Dialect
        kTFG,
      };
    
      // The limit of element size that gets printed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 24 09:43:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. releasenotes/notes/34325.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 14 12:56:32 UTC 2021
    - 171 bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			expectedString:   `config dump has no configuration type`,
    			wantException:    true,
    		},
    		{ // supplying valid pod name retrieves Envoy config (fails because we don't check in Envoy config unit tests)
    			execClientConfig: loggingConfig,
    			args:             strings.Split("bootstrap httpbin-794b576b6c-qx6pf", " "),
    			expectedString:   `config dump has no configuration type`,
    			wantException:    true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tests/integration/security/cacert_rotation/main_test.go

    		t.Errorf("failed to retrieve pod secret from %s, err: %v errOut: %s", podName, err, errOut)
    	}
    
    	dump := &admin.SecretsConfigDump{}
    	if err := protomarshal.Unmarshal([]byte(out), dump); err != nil {
    		t.Errorf("failed to unmarshal secret dump: %v", err)
    	}
    
    	for _, s := range dump.DynamicActiveSecrets {
    		if s.Name == security.WorkloadKeyCertResourceName {
    			return s.LastUpdated.AsTime(), nil
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top