Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for maskstr (0.14 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go

    //go:build go1.16 && !go1.21
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "13.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 120.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          num_added_axis++;
        }
      }
      if (num_input_dims + num_added_axis > 5) return failure();
      return success();
    }
    
    OpFoldResult StridedSliceOp::fold(FoldAdaptor) {
      // Currently only support all masks being 0.
      if (getBeginMask() != 0 || getEndMask() != 0 || getEllipsisMask() != 0 ||
          getNewAxisMask() != 0 || getShrinkAxisMask() != 0)
        return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go

    //go:build go1.21
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "15.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 127.4K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// which can change underfoot once we no longer block
    	// safe-points. We don't need to snapshot the contents because
    	// everything up to cap(allp) is immutable.
    	allpSnapshot := allp
    	// Also snapshot masks. Value changes are OK, but we can't allow
    	// len to change out from under us.
    	idlepMaskSnapshot := idlepMask
    	timerpMaskSnapshot := timerpMask
    
    	// return P and block
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top