Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 858 for Off (0.13 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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top