Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for table_1 (0.18 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

            long now = map.ticker.read();
            preWriteCleanup(now);
    
            int newCount = this.count - 1;
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/scheduler/schedule_one_test.go

    	eventBroadcaster := events.NewBroadcaster(&events.EventSinkImpl{Interface: client.EventsV1()})
    	errS := errors.New("scheduler")
    	errB := errors.New("binder")
    	preBindErr := errors.New("on PreBind")
    
    	table := []struct {
    		name                string
    		injectBindError     error
    		sendPod             *v1.Pod
    		registerPluginFuncs []tf.RegisterPluginFunc
    		expectErrorPod      *v1.Pod
    		expectForgetPod     *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Gets the name in the module symbol table for this node.
      // This name is only used for internal IR references.
      llvm::StringRef GetSymbolTableName(int node_id) const;
    
     private:
      // In the absence of any other information, use this name as the symbol table
      // name for this node.
      std::string GetDefaultSymbolTableName(int node_id) const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    	op_CR      uint32 = 0x1900 // FORMAT_RR         COMPARE (32)
    	op_CRB     uint32 = 0xECF6 // FORMAT_RRS        COMPARE AND BRANCH (32)
    	op_CRDTE   uint32 = 0xB98F // FORMAT_RRF2       COMPARE AND REPLACE DAT TABLE ENTRY
    	op_CRJ     uint32 = 0xEC76 // FORMAT_RIE2       COMPARE AND BRANCH RELATIVE (32)
    	op_CRL     uint32 = 0xC60D // FORMAT_RIL2       COMPARE RELATIVE LONG (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/internal/obj/ppc64/asm9.go

    // The prefixable optab entry contains the pseudo-opcodes which generate relocations, or may generate
    // a more efficient sequence of instructions if a prefixed version exists (ex. paddi instead of oris/ori/add).
    //
    // This table is meant to transform all sequences which might be TOC-relative into an equivalent PC-relative
    // sequence. It also encompasses several transformations which do not involve relocations, those could be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top