Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 139 for writeQString (0.09 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        }
        int writeBytesWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            int p = pad;
    
            if( command == SMB_COM_TRANSACTION && isResponse() == false ) {
                dstIndex += writeString( name, dst, dstIndex );
            }
    
            if( parameterCount > 0 ) {
                while( p-- > 0 ) {
                    dst[dstIndex++] = (byte)0x00;       // Pad
                }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  2. internal/ringbuffer/ring_buffer.go

    			return 0
    		}
    		return r.size
    	}
    
    	if r.w < r.r {
    		return r.r - r.w
    	}
    
    	return r.size - r.w + r.r
    }
    
    // WriteString writes the contents of the string s to buffer, which accepts a slice of bytes.
    func (r *RingBuffer) WriteString(s string) (n int, err error) {
    	x := (*[2]uintptr)(unsafe.Pointer(&s))
    	h := [3]uintptr{x[0], x[1], x[1]}
    	buf := *(*[]byte)(unsafe.Pointer(&h))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    	var str strings.Builder
    	for i, es := range hr.ESHealth {
    		str.WriteString("(Pool: ")
    		str.WriteString(strconv.Itoa(es.PoolID))
    		str.WriteString(" Set: ")
    		str.WriteString(strconv.Itoa(es.SetID))
    		str.WriteString(" Healthy: ")
    		str.WriteString(strconv.FormatBool(es.Healthy))
    		if i == 0 {
    			str.WriteString(")")
    		} else {
    			str.WriteString(") | ")
    		}
    	}
    	return str.String()
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 89.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

            encodedCharBuffer = Buffer()
          }
    
          if (charset == null || charset == Charsets.UTF_8) {
            encodedCharBuffer.writeUtf8CodePoint(codePoint)
          } else {
            encodedCharBuffer.writeString(input, i, i + Character.charCount(codePoint), charset)
          }
    
          while (!encodedCharBuffer.exhausted()) {
            val b = encodedCharBuffer.readByte().toInt() and 0xff
            writeByte('%'.code)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

            return dstIndex - start;
        }
    
    
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            int n;
            n = writeString(this.path, dst, dstIndex);
            SMBUtil.writeInt2( ( this.isUseUnicode() ? this.path.length() * 2 : n ), dst, this.namelen_index);
            return n;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  6. src/bytes/buffer.go

    	if !ok {
    		m = b.grow(len(p))
    	}
    	return copy(b.buf[m:], p), nil
    }
    
    // WriteString appends the contents of s to the buffer, growing the buffer as
    // needed. The return value n is the length of s; err is always nil. If the
    // buffer becomes too large, WriteString will panic with [ErrTooLarge].
    func (b *Buffer) WriteString(s string) (n int, err error) {
    	b.lastRead = opInvalid
    	m, ok := b.tryGrowByReslice(len(s))
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 29 16:47:05 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. cmd/bucket-stats_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteMapHeader(uint32(len(z.Stats)))
    	if err != nil {
    		err = msgp.WrapError(err, "Stats")
    		return
    	}
    	for za0001, za0002 := range z.Stats {
    		err = en.WriteString(za0001)
    		if err != nil {
    			err = msgp.WrapError(err, "Stats")
    			return
    		}
    		if za0002 == nil {
    			err = en.WriteNil()
    			if err != nil {
    				return
    			}
    		} else {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. logger/sql.go

    		convertParams(v, idx)
    	}
    
    	if numericPlaceholder == nil {
    		var idx int
    		var newSQL strings.Builder
    
    		for _, v := range []byte(sql) {
    			if v == '?' {
    				if len(vars) > idx {
    					newSQL.WriteString(vars[idx])
    					idx++
    					continue
    				}
    			}
    			newSQL.WriteByte(v)
    		}
    
    		sql = newSQL.String()
    	} else {
    		sql = numericPlaceholder.ReplaceAllString(sql, "$$$1$$")
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. internal/s3select/select.go

    			buf.Truncate(buf.Len() - 1)
    		}
    		buf.WriteString(s3Select.Output.CSVArgs.RecordDelimiter)
    
    		return nil
    	case jsonFormat:
    		err := record.WriteJSON(buf)
    		if err != nil {
    			return err
    		}
    		// Trim trailing newline from non-simd output
    		if buf.Bytes()[buf.Len()-1] == '\n' {
    			buf.Truncate(buf.Len() - 1)
    		}
    		buf.WriteString(s3Select.Output.JSONArgs.RecordDelimiter)
    
    		return nil
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 22 00:33:43 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

                return !verify;
            }
            return true;
        }
    
    
        protected int writeString ( String str, byte[] dst, int dstIndex ) {
            return writeString(str, dst, dstIndex, this.useUnicode);
        }
    
    
        protected int writeString ( String str, byte[] dst, int dstIndex, boolean unicode ) {
            int start = dstIndex;
            if ( unicode ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
Back to top