Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,786 for Off (0.02 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/cmd/internal/obj/data.go

    	r.Off = int32(off)
    	if int64(r.Off) != off {
    		ctxt.Diag("WriteOff: off overflow %d in %s", off, s.Name)
    	}
    	r.Siz = 4
    	r.Sym = rsym
    	r.Type = objabi.R_ADDROFF
    	r.Add = roff
    }
    
    // WriteWeakOff writes a weak 4 byte offset to rsym+roff into s at offset off.
    // After linking the 4 bytes stored at s+off will be
    // rsym+roff-(start of section that s is in).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/internal/zstd/block.go

    		off++
    	} else {
    		if off+1 >= len(data) {
    			return 0, 0, r.makeEOFError(off)
    		}
    		seqCount = int(data[off]) + (int(data[off+1]) << 8) + 0x7f00
    		off += 2
    	}
    
    	// Read the Symbol_Compression_Modes byte.
    
    	if off >= len(data) {
    		return 0, 0, r.makeEOFError(off)
    	}
    	symMode := data[off]
    	if symMode&3 != 0 {
    		return 0, 0, r.makeError(off, "invalid symbol compression mode")
    	}
    	off++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_off.txt

    env GO111MODULE=off
    
    # This script tests that running go mod with
    # GO111MODULE=off when outside of GOPATH will fatal
    # with an error message, even with some source code in the directory and a go.mod.
    ! go mod init
    stderr 'go: modules disabled by GO111MODULE=off; see ''go help modules'''
    ! go mod graph
    stderr 'go: modules disabled by GO111MODULE=off; see ''go help modules'''
    ! go mod verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:46:25 UTC 2020
    - 1K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (MOVBstore [off] {sym} ptr y:(SETNE x) mem) && y.Uses == 1 => (SETNEstore [off] {sym} ptr x mem)
    (MOVBstore [off] {sym} ptr y:(SETB x) mem) && y.Uses == 1 => (SETBstore [off] {sym} ptr x mem)
    (MOVBstore [off] {sym} ptr y:(SETBE x) mem) && y.Uses == 1 => (SETBEstore [off] {sym} ptr x mem)
    (MOVBstore [off] {sym} ptr y:(SETA x) mem) && y.Uses == 1 => (SETAstore [off] {sym} ptr x mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top