Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for itable (0.23 sec)

  1. src/debug/elf/elf.go

    	DT_NEEDED       DynTag = 1  /* String table offset of a needed shared library. */
    	DT_PLTRELSZ     DynTag = 2  /* Total size in bytes of PLT relocations. */
    	DT_PLTGOT       DynTag = 3  /* Processor-dependent address. */
    	DT_HASH         DynTag = 4  /* Address of symbol hash table. */
    	DT_STRTAB       DynTag = 5  /* Address of string table. */
    	DT_SYMTAB       DynTag = 6  /* Address of symbol table. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			statusCode: http.StatusNotAcceptable,
    		},
    
    		{
    			item:   true,
    			accept: "application/json;as=Table;v=v1;g=meta.k8s.io",
    			expected: &metav1.Table{
    				TypeMeta: metav1.TypeMeta{Kind: "Table", APIVersion: "meta.k8s.io/v1"},
    				ListMeta: metav1.ListMeta{ResourceVersion: "10"},
    				ColumnDefinitions: []metav1.TableColumnDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

      - [Changelog since v1.5.7](#changelog-since-v157)
        - [Other notable changes](#other-notable-changes)
    - [v1.5.7](#v157)
      - [Downloads for v1.5.7](#downloads-for-v157)
        - [Client Binaries](#client-binaries-1)
        - [Server Binaries](#server-binaries-1)
        - [Node Binaries](#node-binaries-1)
      - [Changelog since v1.5.6](#changelog-since-v156)
        - [Other notable changes](#other-notable-changes-1)
    - [v1.5.6](#v156)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. 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)
  5. CHANGELOG/CHANGELOG-1.4.md

        - [Other notable changes](#other-notable-changes-6)
    - [v1.4.3](#v143)
      - [Downloads](#downloads)
      - [Changelog since v1.4.2-beta.1](#changelog-since-v142-beta1)
        - [Other notable changes](#other-notable-changes-7)
    - [v1.4.2](#v142)
      - [Downloads](#downloads-1)
      - [Changelog since v1.4.2-beta.1](#changelog-since-v142-beta1-1)
        - [Other notable changes](#other-notable-changes-8)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            self._input_saved_model_path,
            self._output_saved_model_path,
            quantization_options,
            representative_dataset=repr_ds,
        )
    
        # Tests table lookup to make sure the table has been initialized
        # successfully.
        with session.Session(graph=ops.Graph()) as sess:
          output_meta_graph_def = saved_model_loader.load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    		// there is no server-first "upgrading" to client-first
    		{"tcp-server", "DISABLE", "DISABLE", check.OK()},
    		{"tcp-server", "DISABLE", "PERMISSIVE", check.Error()},
    
    		// Expected to fail, incompatible configuration
    		{"tcp-server", "DISABLE", "STRICT", check.Error()},
    		{"tcp-server", "ISTIO_MUTUAL", "DISABLE", check.Error()},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		}
    		return pods
    	}
    
    	table := []struct {
    		workers int
    	}{
    		{workers: 0}, // will default to scheduler.UpdateWorkerSize
    		{workers: 1},
    	}
    
    	_, ctx := ktesting.NewTestContext(t)
    	for i, item := range table {
    		fakeNow := metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC)
    
    		fakeNodeHandler := &testutil.FakeNodeHandler{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Looks up keys in a table, outputs the corresponding values.";
    
      let description = [{
    The tensor `keys` must of the same type as the keys of the table.
    The output `values` is of the type of the table values.
    
    The scalar `default_value` is the value output for keys not present in the
    table. It must also be of the same type as the table values.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		}
    		s := fmt.Sprint(v.Interface())
    		if s != table.want {
    			t.Errorf("constructed array = %s, want %s", s, table.want)
    		}
    
    		if table.comparable != at.Comparable() {
    			t.Errorf("constructed array (%#v) is comparable=%v, want=%v", v.Interface(), at.Comparable(), table.comparable)
    		}
    		if table.comparable {
    			if table.n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top