Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 224 for dumpbv (0.33 sec)

  1. pkg/util/iptables/testing/fake_test.go

    		:POSTROUTING - [0:0]
    		COMMIT
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		COMMIT
    		*mangle
    		COMMIT
    		`, "\n"))
    	if buf.String() != expected {
    		t.Fatalf("bad initial dump. expected:\n%s\n\ngot:\n%s\n", expected, buf.Bytes())
    	}
    
    	// EnsureChain
    	existed, err := fake.EnsureChain(iptables.Table("blah"), iptables.Chain("KUBE-TEST"))
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

          toco_flags.enable_mlir_variable_quantization();
      quant_specs->disable_per_channel_for_dense_layers =
          toco_flags.disable_per_channel_quantization_for_dense_layers();
      return absl::OkStatus();
    }
    
    // Dumps the op graph of the `module` to `filename` in DOT format.
    absl::Status DumpOpGraphToFile(mlir::ModuleOp module,
                                   const std::string& filename) {
      std::string error_message;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. operator/README.md

    istioctl profile list
    
    # show the values in demo profile
    istioctl profile dump demo
    
    # show the values after a customization file is applied
    istioctl profile dump -f samples/pilot-k8s.yaml
    
    # show differences between the default and demo profiles
    istioctl profile dump default > 1.yaml
    istioctl profile dump demo > 2.yaml
    istioctl profile diff 1.yaml 2.yaml
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

      istioctl ztunnel-config workload <ztunnel-name[.namespace]> --node ambient-worker
    
      # Retrieve full workload dump of workloads with address XXXX for a given Ztunnel instance.
      istioctl ztunnel-config workload <ztunnel-name[.namespace]> --address 0.0.0.0 -o json
    
      # Retrieve Ztunnel config dump separately and inspect from file.
      kubectl exec -it $ZTUNNEL -n istio-system -- curl localhost:15000/config_dump > ztunnel-config.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. internal/rest/client.go

    		r.errorStatusOnce.Do(func() {
    			atomic.AddUint64(&globalStats.errs, 1)
    		})
    	}
    }
    
    // dumpHTTP - dump HTTP request and response.
    func (c *Client) dumpHTTP(req *http.Request, resp *http.Response) {
    	// Starts http dump.
    	_, err := fmt.Fprintln(c.TraceOutput, "---------START-HTTP---------")
    	if err != nil {
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    	t.Run(url, func(t *testing.T) {
    		resp, err := http.Get(url)
    		if err != nil {
    			t.Fatal(err)
    		}
    		dump, _ := httputil.DumpResponse(resp, true)
    		t.Log(string(dump))
    
    		body, err := io.ReadAll(resp.Body)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if e, a := expectedBody, string(body); e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/lstm_utils_test.cc

    };
    
    TEST_F(LstmUtilsTest, ConvertLSTMCellSimple) {
      mlir::TFL::ConvertLSTMCellSimpleToFusedLSTM convert(fused_lstm_func_);
    
      auto result = convert.RewriteFunc();
      EXPECT_FALSE(failed(result));
      fused_lstm_func_.dump();
    
      // verify transpose
      EXPECT_EQ(
          fused_lstm_func_->getAttrOfType<StringAttr>(kTFImplements).getValue(),
          convert.GetCompositeOpName());
      EXPECT_EQ(fused_lstm_func_.getNumArguments(), 5);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/listener.go

    	if err != nil {
    		return nil, fmt.Errorf("listener dump: %v", err)
    	}
    	listeners := make([]*listener.Listener, 0)
    	for _, l := range listenerDump.DynamicListeners {
    		if l.ActiveState != nil && l.ActiveState.Listener != nil {
    			listenerTyped := &listener.Listener{}
    			// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    			l.ActiveState.Listener.TypeUrl = v3.ListenerType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    				t.Errorf("Test %q: %d unexpected actions: %+v", test.name, len(actions)-len(test.expectedActions), dump.Pretty(actions[i:]))
    				break
    			}
    
    			expectedAction := test.expectedActions[i]
    			if !reflect.DeepEqual(expectedAction, action) {
    				t.Errorf("Test %q: action %d\nExpected:\n%s\ngot:\n%s", test.name, i, dump.Pretty(expectedAction), dump.Pretty(action))
    			}
    		}
    
    		if len(test.expectedActions) > len(actions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. src/internal/trace/trace_test.go

    				// Let's assume we're the only failure and give ourselves
    				// up to 1.5 MiB to dump the trace.
    				//
    				// TODO(mknyszek): Remove this when we've migrated off of
    				// the old infrastructure.
    				t.Logf("text trace too large to dump (%d bytes)", len(s))
    			} else {
    				t.Log(s)
    			}
    		} else if t.Failed() || *dumpTraces {
    			// We asked to dump the trace or failed. Write the trace to a file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top