Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 680 for xoffset (0.15 sec)

  1. internal/s3select/select.go

    		rsc.offset = rsc.size + offset
    	}
    	if rsc.offset < 0 {
    		return rsc.offset, errors.New("seek to invalid negative offset")
    	}
    	if rsc.offset >= rsc.size {
    		return rsc.offset, errors.New("seek past end of object")
    	}
    	if rsc.reader != nil {
    		_ = rsc.reader.Close()
    		rsc.reader = nil
    	}
    	return rsc.offset, nil
    }
    
    // Read call to implement io.Reader
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. src/io/io.go

    var errOffset = errors.New("Seek: invalid offset")
    
    func (s *SectionReader) Seek(offset int64, whence int) (int64, error) {
    	switch whence {
    	default:
    		return 0, errWhence
    	case SeekStart:
    		offset += s.base
    	case SeekCurrent:
    		offset += s.off
    	case SeekEnd:
    		offset += s.limit
    	}
    	if offset < s.base {
    		return 0, errOffset
    	}
    	s.off = offset
    	return offset - s.base, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            if (startPosition * 2 >= windowSize) {
                int offset = params.getOffset();
                if (offset < 0) {
                    offset = 0;
                } else if (offset > windowSize / 2) {
                    offset = windowSize / 2;
                }
                int start = startPosition - offset;
                if (start < 0) {
                    start = 0;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

        /**
         * Update digest with data
         * 
         * @param input
         * @param offset
         * @param len
         */
        public void update ( byte[] input, int offset, int len ) {
            if ( log.isTraceEnabled() ) {
                log.trace("update: " + this.updates + " " + offset + ":" + len);
                log.trace(Hexdump.toHexString(input, offset, Math.min(len, 256)));
            }
            if ( len == 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/reloctype.go

    	// Arm64.
    
    	// Set a MOV[NZ] immediate field to bits [15:0] of the offset from the thread
    	// local base to the thread local variable defined by the referenced (thread
    	// local) symbol. Error if the offset does not fit into 16 bits.
    	R_ARM64_TLS_LE
    
    	// Relocates an ADRP; LD64 instruction sequence to load the offset between
    	// the thread local base and the thread local variable defined by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/s390x/ssa.go

    	case ssa.OpS390XRXSBG:
    		r2 := v.Args[1].Reg()
    		i := v.Aux.(s390x.RotateParams)
    		p := s.Prog(v.Op.Asm())
    		p.From = obj.Addr{Type: obj.TYPE_CONST, Offset: int64(i.Start)}
    		p.AddRestSourceArgs([]obj.Addr{
    			{Type: obj.TYPE_CONST, Offset: int64(i.End)},
    			{Type: obj.TYPE_CONST, Offset: int64(i.Amount)},
    			{Type: obj.TYPE_REG, Reg: r2},
    		})
    		p.To = obj.Addr{Type: obj.TYPE_REG, Reg: v.Reg()}
    	case ssa.OpS390XRISBGZ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  7. src/runtime/pinner.go

    func (span *mspan) incPinCounter(offset uintptr) {
    	var rec *specialPinCounter
    	ref, exists := span.specialFindSplicePoint(offset, _KindSpecialPinCounter)
    	if !exists {
    		lock(&mheap_.speciallock)
    		rec = (*specialPinCounter)(mheap_.specialPinCounterAlloc.alloc())
    		unlock(&mheap_.speciallock)
    		// splice in record, fill in offset.
    		rec.special.offset = uint16(offset)
    		rec.special.kind = _KindSpecialPinCounter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    		// and adjust the offset.
    		child.result[child.offset] = lenByte
    		extraBytes := int(lenLen - 1)
    		if extraBytes != 0 {
    			child.add(make([]byte, extraBytes)...)
    			childStart := child.offset + child.pendingLenLen
    			copy(child.result[childStart+extraBytes:], child.result[childStart:])
    		}
    		child.offset++
    		child.pendingLenLen = extraBytes
    	}
    
    	l := length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/time/format_test.go

    	// issue 67470
    	{"-07", "-25", "time zone offset hour out of range"},
    	{"-07:00", "+25:00", "time zone offset hour out of range"},
    	{"-07:00", "-23:61", "time zone offset minute out of range"},
    	{"-07:00:00", "+23:59:61", "time zone offset second out of range"},
    	{"Z07", "-25", "time zone offset hour out of range"},
    	{"Z07:00", "+25:00", "time zone offset hour out of range"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/wasmobj.go

    			if p.From.Offset < 0 {
    				panic("negative offset for *Load")
    			}
    			if p.From.Type != obj.TYPE_CONST {
    				panic("bad type for *Load")
    			}
    			if p.From.Offset > math.MaxUint32 {
    				ctxt.Diag("bad offset in %v", p)
    			}
    			writeUleb128(w, align(p.As))
    			writeUleb128(w, uint64(p.From.Offset))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top