Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 98 for buffer_end (0.19 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/clientinput/StdInStream.java

                }
            }
        }
    
        @Override
        public void close() {
            synchronized (lock) {
                // Allow threads to read anything still buffered
                closed = true;
                lock.notifyAll();
            }
        }
    
        public void received(byte[] bytes) {
            synchronized (lock) {
                if (!waiting) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/KryoBackedEncoder.java

            }
            writeAction.write(nested);
            nested.flush();
            writeSmallInt(0);
        }
    
        /**
         * Returns the total number of bytes written by this encoder, some of which may still be buffered.
         */
        public long getWritePosition() {
            return output.total();
        }
    
        @Override
        public void flush() {
            output.flush();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/StringDeduplicatingKryoBackedEncoder.java

                output.writeString(key);
            } else {
                output.writeInt(index);
            }
        }
    
        /**
         * Returns the total number of bytes written by this encoder, some of which may still be buffered.
         */
        public long getWritePosition() {
            return output.total();
        }
    
        @Override
        public void flush() {
            output.flush();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. internal/grid/benchmark_test.go

    					select {
    					case <-ctx.Done():
    						return nil
    					case out <- toSend:
    					}
    				}
    				return nil
    			},
    
    			Subroute:    "some-subroute",
    			OutCapacity: 1, // Only one message buffered.
    			InCapacity:  0,
    		}))
    		errFatal(err)
    	}
    	const payloadSize = 512
    	rng := rand.New(rand.NewSource(time.Now().UnixNano()))
    	payload := make([]byte, payloadSize)
    	_, err = rng.Read(payload)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/internal/poll/splice_linux.go

    			return n, err
    		}
    		if sock.pd.pollable() {
    			if err := sock.pd.waitRead(sock.isFile); err != nil {
    				return n, err
    			}
    		}
    	}
    }
    
    // splicePump moves all the buffered data from a pipe to a socket.
    //
    // Invariant: when entering splicePump, there are exactly inPipe
    // bytes of data in the pipe, from a previous call to spliceDrain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pkg/log/uds.go

    	}
    	if resp.StatusCode != http.StatusOK {
    		return fmt.Errorf("uds server returns non-ok status %v: %v", u.url, resp.Status)
    	}
    	return nil
    }
    
    // Write implements zapcore.Core. Log messages will be temporarily buffered and sent to
    // UDS server asyncrhonously.
    func (u *udsCore) Write(entry zapcore.Entry, fields []zapcore.Field) error {
    	buffer, err := u.enc.EncodeEntry(entry, fields)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 00:20:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/kryo/KryoBackedCodecTest.groovy

            decoder.readPosition == 0
    
            when:
            decoder.readBoolean()
            decoder.readByte()
            decoder.readLong()
    
            then:
            instr.available() == 12 // decoder has buffered from instr
            decoder.readPosition == 10
    
            when:
            decoder.skipBytes(4098)
    
            then:
            instr.available() == 0
            decoder.readPosition == 4108
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/clientinput/StdInStreamTest.groovy

                stream.close()
            }
    
            then:
            1 * dispatch.onOutput({ it instanceof ReadStdInEvent }) >> { instant.requested }
        }
    
        def "read bytes continues to return buffered content when stream is closed"() {
            def dispatch = Mock(OutputEventListener)
            def stream = new StdInStream(dispatch)
            def text = "some text"
            def bytes = text.bytes
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/mime/quotedprintable/writer.go

    	}
    
    	w.line[w.i] = '='
    	w.line[w.i+1] = upperhex[b>>4]
    	w.line[w.i+2] = upperhex[b&0x0f]
    	w.i += 3
    
    	return nil
    }
    
    const upperhex = "0123456789ABCDEF"
    
    // checkLastByte encodes the last buffered byte if it is a space or a tab.
    func (w *Writer) checkLastByte() error {
    	if w.i == 0 {
    		return nil
    	}
    
    	b := w.line[w.i-1]
    	if isWhitespace(b) {
    		w.i--
    		if err := w.encode(b); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/time/sleep.go

    // (Code may of course still want to call Stop to stop the timer for other reasons.)
    //
    // Before Go 1.23, the channel associated with a Timer was
    // asynchronous (buffered, capacity 1), which meant that
    // stale time values could be received even after [Timer.Stop]
    // or [Timer.Reset] returned.
    // As of Go 1.23, the channel is synchronous (unbuffered, capacity 0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top