Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 4,111 for Tables (0.26 sec)

  1. src/math/pow_s390x.s

    GLOBL ·pow_xa<> + 0(SB), RODATA, $8
    
    // Scale correction tables
    DATA powiadd<> + 0(SB)/8, $0xf000000000000000
    DATA powiadd<> + 8(SB)/8, $0x1000000000000000
    GLOBL powiadd<> + 0(SB), RODATA, $16
    DATA powxscale<> + 0(SB)/8, $0x4ff0000000000000
    DATA powxscale<> + 8(SB)/8, $0x2ff0000000000000
    GLOBL powxscale<> + 0(SB), RODATA, $16
    
    // Fractional powers of 2 table
    DATA ·powtexp<> + 0(SB)/8, $0.442737824274138381E-01
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/language.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go -output tables.go
    
    package language
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"strings"
    
    	"golang.org/x/text/internal/language"
    	"golang.org/x/text/internal/language/compact"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/internal/zstd/zstd.go

    	// A buffer for literals.
    	literals []byte
    
    	// Sequence decode FSE tables.
    	seqTables    [3][]fseBaselineEntry
    	seqTableBits [3]uint8
    
    	// Buffers for sequence decode FSE tables.
    	seqTableBuffers [3][]fseBaselineEntry
    
    	// Scratch space used for small reads, to avoid allocation.
    	scratch [16]byte
    
    	// A scratch table for reading an FSE. Only temporarily valid.
    	fseScratch []fseEntry
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    // If there were no function aliases in the input model, this should be empty.
    // * `asset_file_defs` include information about the assets, if any, that are
    // used directly to initialize resources (like hash tables). If no assets are
    // used in the model, this should be empty.
    absl::StatusOr<tensorflow::quantization::ExportedModel>
    ConvertMlirModuleToExportedModel(
        mlir::ModuleOp module_op, absl::string_view checkpoint_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CompactHashing.java

        }
      }
    
      static void tableClear(Object table) {
        if (table instanceof byte[]) {
          Arrays.fill((byte[]) table, (byte) 0);
        } else if (table instanceof short[]) {
          Arrays.fill((short[]) table, (short) 0);
        } else {
          Arrays.fill((int[]) table, 0);
        }
      }
    
      /**
       * Returns {@code table[index]}, where {@code table} is actually a {@code byte[]}, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    // AppendHuffmanString appends s, as encoded in Huffman codes, to dst
    // and returns the extended buffer.
    func AppendHuffmanString(dst []byte, s string) []byte {
    	// This relies on the maximum huffman code length being 30 (See tables.go huffmanCodeLen array)
    	// So if a uint64 buffer has less than 32 valid bits can always accommodate another huffmanCode.
    	var (
    		x uint64 // buffer
    		n uint   // number valid of bits present in x
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactHashing.java

        }
      }
    
      static void tableClear(Object table) {
        if (table instanceof byte[]) {
          Arrays.fill((byte[]) table, (byte) 0);
        } else if (table instanceof short[]) {
          Arrays.fill((short[]) table, (short) 0);
        } else {
          Arrays.fill((int[]) table, 0);
        }
      }
    
      /**
       * Returns {@code table[index]}, where {@code table} is actually a {@code byte[]}, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

    import com.google.common.collect.SortedMapDifference;
    import com.google.common.collect.SortedMultiset;
    import com.google.common.collect.SortedSetMultimap;
    import com.google.common.collect.Table;
    import com.google.common.collect.Tables;
    import com.google.common.collect.TreeBasedTable;
    import com.google.common.collect.TreeMultimap;
    import com.google.common.io.ByteSink;
    import com.google.common.io.ByteSource;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    	return &apiextensionsv1.CustomResourceDefinition{
    		ObjectMeta: metav1.ObjectMeta{Name: "tables.mygroup.example.com"},
    		Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    			Group: "mygroup.example.com",
    			Names: apiextensionsv1.CustomResourceDefinitionNames{
    				Plural:   "tables",
    				Singular: "table",
    				Kind:     "Table",
    				ListKind: "TablemList",
    			},
    			Scope: apiextensionsv1.ClusterScoped,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

    import com.google.common.collect.SortedMapDifference;
    import com.google.common.collect.SortedMultiset;
    import com.google.common.collect.SortedSetMultimap;
    import com.google.common.collect.Table;
    import com.google.common.collect.Tables;
    import com.google.common.collect.TreeBasedTable;
    import com.google.common.collect.TreeMultimap;
    import com.google.common.io.ByteSink;
    import com.google.common.io.ByteSource;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top