Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 583 for Off (0.06 sec)

  1. tests/integration/ambient/testdata/beta-mtls-off.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-off"
    spec:
      mtls:
        mode: DISABLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-off"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 382 bytes
    - Viewed (0)
  2. src/internal/zstd/literals.go

    		compressedSize = (int(data[off+1]) >> 2) | (int(data[off+2]) << 6)
    		off += 3
    		streams = 4
    	case 3:
    		if off+3 >= len(data) {
    			return 0, nil, r.makeEOFError(off)
    		}
    		regeneratedSize = (int(hdr) >> 4) | (int(data[off]) << 4) | ((int(data[off+1]) & 0x3f) << 12)
    		compressedSize = (int(data[off+1]) >> 6) | (int(data[off+2]) << 2) | (int(data[off+3]) << 10)
    		off += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. src/internal/coverage/slicereader/slicereader.go

    	rv := binary.LittleEndian.Uint32(r.b[int(r.off):end:end])
    	r.off += 4
    	return rv
    }
    
    func (r *Reader) ReadUint64() uint64 {
    	end := int(r.off) + 8
    	rv := binary.LittleEndian.Uint64(r.b[int(r.off):end:end])
    	r.off += 8
    	return rv
    }
    
    func (r *Reader) ReadULEB128() (value uint64) {
    	var shift uint
    
    	for {
    		b := r.b[r.off]
    		r.off++
    		value |= (uint64(b&0x7F) << shift)
    		if b&0x80 == 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/staticdata/embed.go

    		}
    		sym := v.Linksym()
    		off := 0
    		off = objw.SymPtr(sym, off, fsym, 0)       // data string
    		off = objw.Uintptr(sym, off, uint64(size)) // len
    		if kind == embedBytes {
    			objw.Uintptr(sym, off, uint64(size)) // cap for slice
    		}
    
    	case embedFiles:
    		slicedata := v.Sym().Pkg.Lookup(v.Sym().Name + `.files`).Linksym()
    		off := 0
    		// []files pointed at by Files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 18:22:02 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. src/internal/zstd/huff.go

    // This returns the number of bits in the Huffman table and the new offset.
    // RFC 4.2.1.
    func (r *Reader) readHuff(data block, off int, table []uint16) (tableBits, roff int, err error) {
    	if off >= len(data) {
    		return 0, 0, r.makeEOFError(off)
    	}
    
    	hdr := data[off]
    	off++
    
    	var weights [256]uint8
    	var count int
    	if hdr < 128 {
    		// The table is compressed using an FSE. RFC 4.2.1.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64splitload.rules

    (CMPWconstload {sym} [vo] ptr mem) && vo.Val() != 0 => (CMPWconst (MOVWload {sym} [vo.Off()] ptr mem) [vo.Val16()])
    (CMPBconstload {sym} [vo] ptr mem) && vo.Val() != 0 => (CMPBconst (MOVBload {sym} [vo.Off()] ptr mem) [vo.Val8()])
    
    (CMP(Q|L|W|B)loadidx1 {sym} [off] ptr idx x mem) => (CMP(Q|L|W|B) (MOV(Q|L|W|B)loadidx1 {sym} [off] ptr idx mem) x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. src/internal/coverage/slicewriter/slicewriter.go

    		}
    		sws.off += offset
    		return sws.off, nil
    	case io.SeekEnd:
    		newoff := int64(len(sws.payload)) + offset
    		if newoff != sws.off && (newoff < 0 || newoff > int64(len(sws.payload))) {
    			return 0, fmt.Errorf("invalid seek: new offset %d (out of range [0 %d]", newoff, len(sws.payload))
    		}
    		sws.off = newoff
    		return sws.off, nil
    	}
    	// other modes not supported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/internal/zstd/bits.go

    	data block   // the bits to read
    	off  uint32  // current offset into data
    	bits uint32  // bits ready to be returned
    	cnt  uint32  // number of valid bits in the bits field
    }
    
    // makeBitReader makes a bit reader starting at off.
    func (r *Reader) makeBitReader(data block, off int) bitReader {
    	return bitReader{
    		r:    r,
    		data: data,
    		off:  uint32(off),
    	}
    }
    
    // moreBits is called to read more bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite386splitload.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (CMPBload {sym} [off] ptr x mem)
    	// result: (CMPB (MOVBload {sym} [off] ptr mem) x)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		x := v_1
    		mem := v_2
    		v.reset(Op386CMPB)
    		v0 := b.NewValue0(v.Pos, Op386MOVBload, typ.UInt8)
    		v0.AuxInt = int32ToAuxInt(off)
    		v0.Aux = symToAux(sym)
    		v0.AddArg2(ptr, mem)
    		v.AddArg2(v0, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typebits/typebits.go

    // on future calls with the same type t.
    func Set(t *types.Type, off int64, bv bitvec.BitVec) {
    	set(t, off, bv, false)
    }
    
    // SetNoCheck is like Set, but do not check for alignment.
    func SetNoCheck(t *types.Type, off int64, bv bitvec.BitVec) {
    	set(t, off, bv, true)
    }
    
    func set(t *types.Type, off int64, bv bitvec.BitVec, skip bool) {
    	if !skip && uint8(t.Alignment()) > 0 && off&int64(uint8(t.Alignment())-1) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top