Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mask6 (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    )
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    type _Gid_t uint32
    
    type StatxTimestamp struct {
    	Sec  int64
    	Nsec uint32
    	_    int32
    }
    
    type Statx_t struct {
    	Mask             uint32
    	Blksize          uint32
    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			s.vars[hashVar] = s.newValue1(zext, typs.Uintptr, h)
    
    			// Load mask from cache.
    			mask := s.newValue2(ssa.OpLoad, typs.Uintptr, cache, s.mem())
    			// Jump to loop head.
    			b := s.endBlock()
    			b.AddEdgeTo(loopHead)
    
    			// At loop head, get pointer to the cache entry.
    			//   e := &cache.Entries[hash&mask]
    			s.startBlock(loopHead)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    </p>
    
    <pre>
    const (
    	bit0, mask0 = 1 &lt;&lt; iota, 1&lt;&lt;iota - 1  // bit0 == 1, mask0 == 0  (iota == 0)
    	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
    	_, _                                  //                        (iota == 2, unused)
    	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
    )
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Output shape needs to be static to apply 'new_axis_mask' or
        // 'shrink_axis_mask' by reshaping tensor after slice.
        //
        // TODO(hinsu): Relax this constraint for ops without the above masks.
        auto result_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!result_ty || !result_ty.hasStaticShape()) return failure();
    
        DenseIntElementsAttr sparse_begin_attr, sparse_end_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a bug that caused the `apiserver` to panic when trying to allocate a Service with a dynamic `ClusterIP` and was configured with Service CIDRs with a /28 mask for IPv4 and a /124 mask for IPv6 ([#115322](https://github.com/kubernetes/kubernetes/pull/115322), [@aojea](https://github.com/aojea))
    - Fixed a bug where Kubernetes would apply a default StorageClass to a PersistentVolumeClaim,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	if len(p) != 4 {
    		countError("frame_windowupdate_bad_len")
    		return nil, http2ConnectionError(http2ErrCodeFrameSize)
    	}
    	inc := binary.BigEndian.Uint32(p[:4]) & 0x7fffffff // mask off high reserved bit
    	if inc == 0 {
    		// A receiver MUST treat the receipt of a
    		// WINDOW_UPDATE frame with an flow control window
    		// increment of 0 as a stream error (Section 5.4.2) of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ### Internal
    
    * ✏️ Update Pydantic links to dotenv support. PR [#10511](https://github.com/tiangolo/fastapi/pull/10511) by [@White-Mask](https://github.com/White-Mask).
    * ✏️ Update links in `docs/en/docs/async.md` and `docs/zh/docs/async.md` to make them relative. PR [#10498](https://github.com/tiangolo/fastapi/pull/10498) by [@hasnatsajid](https://github.com/hasnatsajid).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top