Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for table_1 (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. src/cmd/internal/obj/arm64/asm7.go

    		c.blitrl = q
    	}
    
    	// The line number for constant pool entries doesn't really matter.
    	// We set it to the line number of the preceding instruction so that
    	// there are no deltas to encode in the pc-line tables.
    	for q := c.blitrl; q != nil; q = q.Link {
    		q.Pos = p.Pos
    	}
    
    	c.elitrl.Link = p.Link
    	p.Link = c.blitrl
    
    	c.blitrl = nil /* BUG: should refer back to values until out-of-range */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
          // will be resized. That threshold is ceilingPowerOfTwo(capacity*loadFactor), where
          // loadFactor is 0.75 by default. So with the calculation here we ensure that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
          // will be resized. That threshold is ceilingPowerOfTwo(capacity*loadFactor), where
          // loadFactor is 0.75 by default. So with the calculation here we ensure that the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        rewriter.replaceOp(mul_op, fc.getOutput());
    
        return success();
      }
    };
    
    // Fuse Mul with proceeding Affine ops. This is an C++ implementation of the
    // following table gen implementation, which doesn't derived the result type of
    // the TFL_DequantizeOp.
    // def : Pat<(TFL_MulOp (TFL_Conv2DOp:$conv_output $input,
    //                          (TFL_DequantizeOp (TFL_QuantizeOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. 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