Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for readSmallLong (0.36 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                    while (decoder.getReadPosition() <= maxPos) {
                        boolean readStdout = decoder.readBoolean();
                        long readClassId = decoder.readSmallLong();
                        long readTestId = decoder.readSmallLong();
                        int readLength = decoder.readSmallInt();
    
                        boolean isClassLevel = readTestId == 0;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/messaging/WorkerConfigSerializer.java

            String gradleUserHomeDirPath = decoder.readString();
            MultiChoiceAddress serverAddress = new MultiChoiceAddressSerializer().read(decoder);
            final long workerId = decoder.readSmallLong();
            final String displayName = decoder.readString();
            Action<? super WorkerProcessContext> workerAction = deserializeWorker(decoder.readBinary(), getClass().getClassLoader());
    
            return new WorkerConfig(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/StringDeduplicatingKryoBackedDecoder.java

            try {
                return input.readLong();
            } catch (KryoException e) {
                throw maybeEndOfStream(e);
            }
        }
    
        @Override
        public long readSmallLong() throws EOFException, IOException {
            try {
                return input.readLong(true);
            } catch (KryoException e) {
                throw maybeEndOfStream(e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/KryoBackedDecoder.java

            try {
                return input.readLong();
            } catch (KryoException e) {
                throw maybeEndOfStream(e);
            }
        }
    
        @Override
        public long readSmallLong() throws EOFException, IOException {
            try {
                return input.readLong(true);
            } catch (KryoException e) {
                throw maybeEndOfStream(e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Decoder.java

         *
         * @throws EOFException when the end of the byte stream is reached before the int value can be fully read.
         */
        long readSmallLong() throws EOFException, IOException;
    
        /**
         * Reads a signed 32 bit int value. Can read any value that was written using {@link Encoder#writeInt(int)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                undefined()
    
            override fun skipBytes(count: Long): Unit =
                undefined()
    
            override fun readLong(): Long =
                undefined()
    
            override fun readSmallLong(): Long =
                undefined()
    
            override fun getInputStream(): InputStream =
                undefined()
    
            override fun readString(): String =
                undefined()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top