Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for readBooleans (0.14 sec)

  1. 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 boolean value can be fully read.
         */
        boolean readBoolean() throws EOFException, IOException;
    
        /**
         * Reads a non-null string value. Can read any value that was written using {@link Encoder#writeString(CharSequence)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

        private
        suspend fun ReadContext.readDependencies(): List<LocalComponentDependencyMetadata> {
            return readList {
                val selector = readNonNull<ComponentSelector>()
                val constraint = readBoolean()
                LocalComponentDependencyMetadata(
                    selector,
                    null,
                    emptyList(),
                    emptyList(),
                    false,
                    false,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

                        val delegate = readNodeGroup(nodesById)
                        FinalizerGroup(finalizerNode, delegate)
                    }
    
                    2 -> {
                        val reachableFromCommandLine = readBoolean()
                        val ordinalGroup = readNodeGroup(nodesById)
                        val groups = readCollectionInto(::HashSet) { readNodeGroup(nodesById) as FinalizerGroup }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

                isolate.identities.putInstance(id, fileCollection)
                fileCollection
            }
        }
    
        suspend fun ReadContext.decodeContents(): FileCollectionInternal = if (readBoolean()) {
            readNonNull<FileCollectionExecutionTimeValue>().toFileCollection(fileCollectionFactory)
        } else {
            fileCollectionFactory.resolving(
                readList().map { element ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/BaseSerializerFactory.java

            }
        }
    
        private static class BooleanSerializer extends AbstractSerializer<Boolean> {
            @Override
            public Boolean read(Decoder decoder) throws Exception {
                return decoder.readBoolean();
            }
    
            @Override
            public void write(Encoder encoder, Boolean value) throws Exception {
                encoder.writeBoolean(value);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                    KryoBackedDecoder decoder = new KryoBackedDecoder(new RandomAccessFileInputStream(dataFile));
                    while (decoder.getReadPosition() <= maxPos) {
                        boolean readStdout = decoder.readBoolean();
                        long readClassId = decoder.readSmallLong();
                        long readTestId = decoder.readSmallLong();
                        int readLength = decoder.readSmallInt();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                undefined()
    
            override fun getInputStream(): InputStream =
                undefined()
    
            override fun readString(): String =
                undefined()
    
            override fun readBoolean(): Boolean =
                undefined()
    
            override fun readBytes(buffer: ByteArray?): Unit =
                undefined()
    
            override fun readBytes(buffer: ByteArray?, offset: Int, count: Int): Unit =
    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