Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 191 for mdump (0.04 sec)

  1. src/net/http/clientserver_test.go

    			}
    			dump, err := httputil.DumpResponse(res, true)
    			if err != nil {
    				t.Errorf("%s: DumpResponse: %v", proto, err)
    				return
    			}
    			if strings.Contains(string(dump), "Connection: close") {
    				t.Errorf("%s: should not see \"Connection: close\" in dump; got:\n%s", proto, dump)
    			}
    			if !strings.Contains(string(dump), "FOO") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.cc

               "If multiple, separate them with commas."
               " Where, Some_other_ops"),
          Flag("tf_xla_clustering_debug",
               &mark_for_compilation_flags->tf_xla_clustering_debug,
               "Dump graphs during XLA compilation."),
          Flag("tf_xla_cpu_global_jit",
               &mark_for_compilation_flags->tf_xla_cpu_global_jit,
               "Enables global JIT compilation for CPU via SessionOptions."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

                } finally {
                    requestCompleted(outcome);
                }
            } finally {
                httpExchange.close();
            }
        }
    
        // Dump all JVMs' threads on the machine to troubleshoot deadlock issues
        // We observed jstack hanging on windows, so for now we only enable it for Linux
        private void dumpThreadsUponTimeout(String stacktrace) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops.mlir

    // RUN: tf-tfrt-opt -split-input-file -tfrt-lower-tf-savedmodel=hoist-invariant-ops=true %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    module attributes {tf_saved_model.semantics} {
    
    // Test hoisting varhandle op.
    
    // CHECK-LABEL: func @_tfrt_resource_init
    // CHECK: [[handle:%.*]] = "tf.VarHandleOp"() <{container = "", shared_name = "x"}> : () -> tensor<!tf_type.resource<tensor<i32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 23:54:14 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/debug/dwarf/line_test.go

    )
    
    func TestLineELFGCC(t *testing.T) {
    	// Generated by:
    	//   # gcc --version | head -n1
    	//   gcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
    	//   # gcc -g -o line-gcc.elf line*.c
    
    	// Line table based on readelf --debug-dump=rawline,decodedline
    	want := []LineEntry{
    		{Address: 0x40059d, File: file1H, Line: 2, IsStmt: true},
    		{Address: 0x4005a5, File: file1H, Line: 2, IsStmt: true},
    		{Address: 0x4005b4, File: file1H, Line: 5, IsStmt: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/model/model_test.go

    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			got, err := New(tc.rule, false)
    			if err != nil {
    				t.Fatal(err)
    			}
    			got.MigrateTrustDomain(tc.tdBundle)
    			gotStr := spew.Sdump(got)
    			for _, want := range tc.want {
    				if !strings.Contains(gotStr, want) {
    					t.Errorf("got %s but not found %s", gotStr, want)
    				}
    			}
    			for _, notWant := range tc.notWant {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/parse_test.go

    			error: `"-Q KUBE-FORWARD`,
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			dump, err := ParseIPTablesDump(tc.input)
    			if err == nil {
    				if tc.error != "" {
    					t.Errorf("unexpectedly did not get error")
    				} else if !reflect.DeepEqual(tc.output, dump) {
    					t.Errorf("bad output: expected %#v got %#v", tc.output, dump)
    				}
    			} else {
    				if tc.error == "" {
    					t.Errorf("got unexpected error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. pkg/api/testing/serialization_test.go

    		}
    		sr := streaming.NewDecoder(framer.NewFrameReader(io.NopCloser(out)), s)
    		resultSecret := &v1.Secret{}
    		res, _, err := sr.Decode(nil, resultSecret)
    		if err != nil {
    			t.Fatalf("%v:\n%s", err, hex.Dump(obj.Bytes()))
    		}
    		resultSecret.Kind = "Secret"
    		resultSecret.APIVersion = "v1"
    		if !apiequality.Semantic.DeepEqual(v1secret, res) {
    			t.Fatalf("objects did not match: %s", cmp.Diff(v1secret, res))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.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
    - 37.9K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- if .Values.global.priorityClassName }}
          priorityClassName: "{{ .Values.global.priorityClassName }}"
    {{- end }}
    {{- if .Values.global.proxy.enableCoreDump }}
          initContainers:
            - name: enable-core-dump
    {{- if contains "/" .Values.global.proxy.image }}
              image: "{{ .Values.global.proxy.image }}"
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top