Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 231 for dumpbv (0.2 sec)

  1. pilot/test/xdstest/extract.go

    	}
    }
    
    // DumpList will dump a list of protos.
    func DumpList[T any](t test.Failer, protoList []T) []string {
    	res := []string{}
    	for _, i := range protoList {
    		p, ok := any(i).(proto.Message)
    		if !ok {
    			t.Fatalf("expected proto, got %T", i)
    		}
    		res = append(res, Dump(t, p))
    	}
    	return res
    }
    
    func Dump(t test.Failer, p proto.Message) string {
    	v := reflect.ValueOf(p)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/go/types/generate_test.go

    // TODO(gri) can we avoid this and just use atPos consistently in go/types and types2?
    func fixAtPosCall(f *ast.File) {
    	ast.Inspect(f, func(n ast.Node) bool {
    		switch n := n.(type) {
    		case *ast.CallExpr:
    			if selx, _ := n.Fun.(*ast.SelectorExpr); selx != nil && selx.Sel.Name == "dump" {
    				for i, arg := range n.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

            "bool", /*default=*/"true",
            "Whether to enable per-channel quantized weights.">,
        Option<"mlir_dump_file_name_", "mlir-dump-file-name",
            "std::optional<std::string>", /*default=*/"std::nullopt",
            "MLIR dump file name.">,
        Option<"merge_fusion_with_dequantize_",
            "merge-fusion-with-dequantize",
            "bool", /*default=*/"false",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/cache.go

    		cache.headNode = ni.next
    	}
    	delete(cache.nodes, name)
    }
    
    // Dump produces a dump of the current scheduler cache. This is used for
    // debugging purposes only and shouldn't be confused with UpdateSnapshot
    // function.
    // This method is expensive, and should be only used in non-critical path.
    func (cache *cacheImpl) Dump() *Dump {
    	cache.mu.RLock()
    	defer cache.mu.RUnlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apiserver/pkg/authentication/request/headerrequest"
    	"k8s.io/apiserver/pkg/server/dynamiccertificates"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

    import org.jetbrains.kotlin.ir.expressions.IrFieldAccessExpression
    import org.jetbrains.kotlin.ir.symbols.UnsafeDuringIrConstructionAPI
    import org.jetbrains.kotlin.ir.util.DumpIrTreeOptions
    import org.jetbrains.kotlin.ir.util.dump
    import org.jetbrains.kotlin.ir.visitors.IrElementVisitorVoid
    import org.jetbrains.kotlin.ir.visitors.acceptChildrenVoid
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. pkg/api/v1/endpoints/util_test.go

    		},
    	}
    
    	for _, tc := range testCases {
    		result := RepackSubsets(tc.given)
    		if !reflect.DeepEqual(result, SortSubsets(tc.expect)) {
    			t.Errorf("case %q: expected %s, got %s", tc.name, dump.Pretty(SortSubsets(tc.expect)), dump.Pretty(result))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  8. pkg/controller/serviceaccount/tokens_controller_test.go

    					break
    				}
    
    				expectedAction := tc.ExpectedActions[i]
    				if !reflect.DeepEqual(expectedAction, action) {
    					t.Errorf("%s:\nExpected:\n%s\ngot:\n%s", k, dump.Pretty(expectedAction), dump.Pretty(action))
    					continue
    				}
    			}
    
    			if len(tc.ExpectedActions) > len(actions) {
    				t.Errorf("%s: %d additional expected actions", k, len(tc.ExpectedActions)-len(actions))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

    // RUN: tf-tfrt-opt --split-input-file -pass-pipeline='builtin.module(pre-parallel-tf-to-mlrt{use-tpu-host-allocator-for-inputs=true},tf-mlrt-parallelization{tfrt-cost-threshold=4},tf-to-mlrt)'  %s | FileCheck %s --dump-input=fail --dump-input-filter=all
    
    func.func @callee(%arg0: tensor<i32>, %arg1: tensor<i32>) -> (tensor<i32>) {
      func.return %arg0: tensor<i32>
    }
    
    // CHECK-LABEL: func @batch_function
    func.func @batch_function(%arg0: tensor<i32>) -> (tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_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))
    				}
    			}
    		})
    	}
    }
    
    type namedTransformerFunc struct {
    	name string
    	f    transformerFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top