Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,111 for Tables (0.1 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    }
    
    func isSegment(p Prefix) bool {
    	switch p {
    	case PrefixCS, PrefixDS, PrefixES, PrefixFS, PrefixGS, PrefixSS:
    		return true
    	}
    	return false
    }
    
    // The Op definitions and string list are in tables.go.
    
    var prefixNames = map[Prefix]string{
    	PrefixCS:       "CS",
    	PrefixDS:       "DS",
    	PrefixES:       "ES",
    	PrefixFS:       "FS",
    	PrefixGS:       "GS",
    	PrefixSS:       "SS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/debug/dwarf/line.go

    }
    
    // Files returns the file name table of this compilation unit as of
    // the current position in the line table. The file name table may be
    // referenced from attributes in this compilation unit such as
    // [AttrDeclFile].
    //
    // Entry 0 is always nil, since file index 0 represents "no file".
    //
    // The file name table of a compilation unit is not fixed. Files
    // returns the file table as of the current position in the line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMaker.java

      }
    
      /**
       * Sets the minimum total size for the internal hash tables. For example, if the initial capacity
       * is {@code 60}, and the concurrency level is {@code 8}, then eight segments are created, each
       * having a hash table of size eight. Providing a large enough estimate at construction time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/HashFunction.java

     * prevention and <i>no</i> expectation of bit dispersion. This leaves them perfectly suitable for
     * use in hash tables, because extra collisions cause only a slight performance hit, while poor bit
     * dispersion is easily corrected using a secondary hash function (which all reasonable hash table
     * implementations in Java use). For the many uses of hash functions beyond data structures,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/HashFunction.java

     * prevention and <i>no</i> expectation of bit dispersion. This leaves them perfectly suitable for
     * use in hash tables, because extra collisions cause only a slight performance hit, while poor bit
     * dispersion is easily corrected using a secondary hash function (which all reasonable hash table
     * implementations in Java use). For the many uses of hash functions beyond data structures,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/pcln.go

    	npcdata := 0
    	nfuncdata := 0
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		// Find the highest ID of any used PCDATA table. This ignores PCDATA table
    		// that consist entirely of "-1", since that's the assumed default value.
    		//   From.Offset is table ID
    		//   To.Offset is data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tpu_device.cc

                  xla_output->shaped_buffer()));
    
          // We need a single definition event for an XlaTensor, so make the
          // device to device stream wait for the stream that wrote the tuple index
          // tables on the destination device. Should this prove to be a problem,
          // we can always extend XlaTensor to take a pair of definition events that
          // must all be satisfied, or add an Event::Merge() API that allows us to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.cc

               "\"xla_compile_cache\""),
          Flag("tf_xla_sparse_core_disable_table_stacking",
               &sparse_core_flags->tf_xla_sparse_core_disable_table_stacking,
               "Disable table stacking for all the tables passed to the SparseCore"
               "mid level API."),
          Flag("tf_xla_sparse_core_minibatch_max_division_level",
               &sparse_core_flags->tf_xla_sparse_core_minibatch_max_division_level,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    		}
    		return DS
    	}
    
    	// Add implicit arguments not present in the tables.
    	// Normally we shy away from making implicit arguments explicit,
    	// following the Intel manuals, but adding the arguments seems
    	// the best way to express the effect of the segment override prefixes.
    	// TODO(rsc): Perhaps add these to the tables and
    	// create bytecode instructions for them.
    	usedAddrSize := false
    	switch inst.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. src/strconv/atoi_test.go

    	{"1\x00.2", `strconv.ParseFloat: parsing "1\x00.2": failed`},
    }
    
    func init() {
    	// The parse routines return NumErrors wrapping
    	// the error and the string. Convert the tables above.
    	for i := range parseUint64Tests {
    		test := &parseUint64Tests[i]
    		if test.err != nil {
    			test.err = &NumError{"ParseUint", test.in, test.err}
    		}
    	}
    	for i := range parseUint64BaseTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top