Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for table_1 (0.28 sec)

  1. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"foo9", "Unknown,SchedulingDisabled", "<none>", "<unknown>", ""}}},
    		},
    	}
    
    	for i, test := range table {
    		rows, err := printNode(&test.node, printers.GenerateOptions{})
    		if err != nil {
    			t.Fatalf("Error generating table rows for Node: %#v", err)
    		}
    		for i := range rows {
    			rows[i].Object.Object = nil
    		}
    		if !reflect.DeepEqual(test.expected, rows) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    ce)), \"destination_workload_var\", \".\", \"destination_workload\", \"destination_workload_namespace\")","format":"table","hide":false,"instant":true,"interval":"","intervalFactor":1,"legendFormat":"{{ destination_workload }}.{{ destination_workload_namespace }}","refId":"E"}],"title":"HTTP/GRPC Workloads","transformations":[{"id":"merge","options":{"reducers":[]}}],"type":"table"},{"datasource":{"uid":"${datasource}","type":"prometheus"},"gridPos":{"h":18,"w":24,"x":0,"y":33},"id":109,"links":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    
    	testContext := genericapirequest.WithNamespace(genericapirequest.NewContext(), "test")
    	noNamespaceContext := genericapirequest.NewContext()
    
    	table := map[string]struct {
    		in      *example.PodList
    		m       storage.SelectionPredicate
    		out     runtime.Object
    		context context.Context
    	}{
    		"notFound": {
    			in:  nil,
    			m:   matchEverything(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Map of key value pairs of metadata to export.
      const std::map<std::string, std::string> metadata_;
      // User's defined supported backends.
      const std::unordered_set<std::string> supported_backends_;
      // A mapping table to mlir::Operation objects for TFL subgraph and operator
      // index in a flatbuffer.
      std::vector<std::vector<Operation*>> subgraph_op_inst_map_;
      // A list of subgraphs in the model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Creates a non-initialized hash table.";
      let description = [{
    This op creates a hash table, specifying the type of its keys and values.
    Before using the table you will have to initialize it.  After initialization the
    table will be immutable.
      }];
    
      let arguments = (ins
        I32Attr:$table_id,
        TypeAttr:$key_dtype,
        TypeAttr:$value_dtype
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top