Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for entities (0.33 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    // operand combinations for a given instruction.  This is initialized from buildop.
    //
    // Likewise, each slice of optab is dynamically sorted using the ocmp Sort interface
    // to arrange entries to minimize text size of each opcode.
    //
    // optab is the sorted result of combining optabBase, optabGen, and prefixableOptab.
    var optab []Optab
    
    var optabBase = []Optab{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go

    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    		return uint8(bidiValues[n<<6+uint32(b)])
    	}
    }
    
    // bidiValues: 234 blocks, 14976 entries, 14976 bytes
    // The third block is the zero block.
    var bidiValues = [14976]uint8{
    	// Block 0x0, offset 0x0
    	0x00: 0x000b, 0x01: 0x000b, 0x02: 0x000b, 0x03: 0x000b, 0x04: 0x000b, 0x05: 0x000b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 116.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go

    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    		return uint8(bidiValues[n<<6+uint32(b)])
    	}
    }
    
    // bidiValues: 248 blocks, 15872 entries, 15872 bytes
    // The third block is the zero block.
    var bidiValues = [15872]uint8{
    	// Block 0x0, offset 0x0
    	0x00: 0x000b, 0x01: 0x000b, 0x02: 0x000b, 0x03: 0x000b, 0x04: 0x000b, 0x05: 0x000b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 120.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go

    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    		return uint8(bidiValues[n<<6+uint32(b)])
    	}
    }
    
    // bidiValues: 240 blocks, 15360 entries, 15360 bytes
    // The third block is the zero block.
    var bidiValues = [15360]uint8{
    	// Block 0x0, offset 0x0
    	0x00: 0x000b, 0x01: 0x000b, 0x02: 0x000b, 0x03: 0x000b, 0x04: 0x000b, 0x05: 0x000b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 118.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go

    func (t *bidiTrie) lookupValue(n uint32, b byte) uint8 {
    	switch {
    	default:
    		return uint8(bidiValues[n<<6+uint32(b)])
    	}
    }
    
    // bidiValues: 259 blocks, 16576 entries, 16576 bytes
    // The third block is the zero block.
    var bidiValues = [16576]uint8{
    	// Block 0x0, offset 0x0
    	0x00: 0x000b, 0x01: 0x000b, 0x02: 0x000b, 0x03: 0x000b, 0x04: 0x000b, 0x05: 0x000b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 127.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "type": "object"
              },
              "disruptionsAllowed": {
                "default": 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      fi
    }
    
    # Robustly try to create an instance template.
    # $1: The name of the instance template.
    # $2: The scopes flag.
    # $3: String of comma-separated metadata-from-file entries.
    # $4: String of comma-separated metadata (key=value) entries.
    # $5: the node OS ("linux" or "windows").
    function create-node-template() {
      detect-project
      detect-subnetworks
      local template_name="$1"
      local metadata_values="$4"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map are accessible via CEL macros and functions such as `self.all(...)`. If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and functions. If the Rule is scoped to a scalar, `self` is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

       * broke our cached response parser because it split on the first colon. This regression test
       * exists to help us read these old bad cache entries.
       *
       * https://github.com/square/okhttp/issues/227
       */
      @Test
      fun testGoldenCacheResponse() {
        cache.close()
        server.enqueue(
          MockResponse.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Decomposes ops of the 'Optional' family";
      let description = [{
        Turns OptionalFromValue, OptionalGetValue, OptionalNone,
        and OptionalHasValue into identities.
    
        For example, if we have:
    
          %1 = "tf.OptionalFromValue"(%0) : (tensor<f32>) -> !tf_type.variant
          %2 = "tf.OptionalGetValue"(%1) : (tensor<!tf_type.variant>) -> tensor<f32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top