Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for readHuff (0.27 sec)

  1. src/crypto/tls/quic.go

    	}
    	c.quic.readbuf = data
    	<-c.quic.signalc
    	_, ok := <-c.quic.blockedc
    	if ok {
    		// The handshake goroutine is waiting for more data.
    		return nil
    	}
    	// The handshake goroutine has exited.
    	c.handshakeMutex.Lock()
    	defer c.handshakeMutex.Unlock()
    	c.hand.Write(c.quic.readbuf)
    	c.quic.readbuf = nil
    	for q.conn.hand.Len() >= 4 && q.conn.handshakeErr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/ByteArrayDataInput.java

      @Override
      double readDouble();
    
      @CanIgnoreReturnValue // to skip a line
      @Override
      @CheckForNull
      String readLine();
    
      @CanIgnoreReturnValue // to skip a field
      @Override
      String readUTF();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaSerializationIntegrationTest.groovy

                        oos.writeUTF("42")
                    }
    
                    @Override
                    void readExternal(java.io.ObjectInput ois) {
                        value = ois.readUTF()
                    }
                }
    
                class SomeTask extends DefaultTask {
                    private final SomeBean bean = new SomeBean()
    
                    @TaskAction
                    void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/InputStreamBackedDecoder.java

            return inputStream.readBoolean();
        }
    
        @Override
        public String readString() throws EOFException, IOException {
            return inputStream.readUTF();
        }
    
        @Override
        public byte readByte() throws IOException {
            return (byte) (inputStream.readByte() & 0xff);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/LittleEndianDataInputStream.java

      public double readDouble() throws IOException {
        return Double.longBitsToDouble(readLong());
      }
    
      @CanIgnoreReturnValue // to skip a field
      @Override
      public String readUTF() throws IOException {
        return new DataInputStream(in).readUTF();
      }
    
      /**
       * Reads a {@code short} as specified by {@link DataInputStream#readShort()}, except using
       * little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithNewProtocolTest.groovy

                assert str.readByte() == 3
                assert str.readInt() == 34
                assert str.readLong() == 678L
                assert str.readUTF() == processIdentifier
                assert str.readUTF() == operationalName
                assert str.read() < 0
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

            }
    
            private
            fun readObject(objectInputStream: ObjectInputStream) {
                markRead("subclass")
                stringValue = objectInputStream.readUTF()
                writeOrder = objectInputStream.readObject().uncheckedCast()
            }
        }
    
        class SerializableRecursiveWriteReplaceBean(var value: Any? = null) : Serializable {
    
            @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/ObjectInputStreamAdapter.kt

            }
        }
    
        override fun readObjectOverride(): Any? = readContext.runReadOperation {
            read()
        }
    
        override fun readInt(): Int = readContext.readInt()
    
        override fun readUTF(): String = readContext.readString()
    
        override fun read(b: ByteArray): Int = inputStream.read(b)
    
        override fun markSupported(): Boolean = inputStream.markSupported()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/compress/flate/flate_test.go

    		windowSize * 1, windowSize * 2, windowSize * 3,
    	}
    
    	var maxSize int
    	for _, n := range testSizes {
    		if maxSize < n {
    			maxSize = n
    		}
    	}
    
    	readBuf := make([]byte, 40)
    	data := make([]byte, maxSize)
    	for i := range data {
    		data[i] = byte(i)
    	}
    
    	for _, sz := range testSizes {
    		if testing.Short() && sz > windowSize {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

      public double readDouble() throws IOException {
        return Double.longBitsToDouble(readLong());
      }
    
      @CanIgnoreReturnValue // to skip a field
      @Override
      public String readUTF() throws IOException {
        return new DataInputStream(in).readUTF();
      }
    
      /**
       * Reads a {@code short} as specified by {@link DataInputStream#readShort()}, except using
       * little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top