Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for readBooleans (0.75 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionStateSerializer.java

            ImmutableSortedMap<String, FileSystemSnapshot> outputFilesSnapshots = readSnapshots(decoder);
    
            boolean successful = decoder.readBoolean();
    
            return new DefaultPreviousExecutionState(
                originMetadata,
                cacheKey,
                taskImplementation,
                taskActionImplementations,
                inputProperties,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:25:58 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

                daemonBaseDir = new File(decoder.readString());
                idleTimeoutMs = decoder.readSmallInt();
                periodicCheckIntervalMs = decoder.readSmallInt();
                singleUse = decoder.readBoolean();
                nativeServicesMode = NativeServicesMode.values()[decoder.readSmallInt()];
                daemonUid = decoder.readString();
                priority = DaemonParameters.Priority.values()[decoder.readSmallInt()];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

        override suspend fun WriteContext.encode(value: BooleanValueSnapshot) {
            writeBoolean(value.value)
        }
    
        override suspend fun ReadContext.decode(): BooleanValueSnapshot {
            val value = readBoolean()
            return BooleanValueSnapshot(value)
        }
    }
    
    
    class IsolatedManagedValueCodec(private val managedFactory: ManagedFactoryRegistry) : Codec<IsolatedManagedValue> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryContent.java

            @Override
            public DaemonRegistryContent read(Decoder decoder) throws Exception {
                if (decoder.readBoolean()) {
                    List<Address> addresses = readAddresses(decoder);
                    Map<Address, DaemonInfo> infosMap = readInfosMap(decoder, addresses);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatableSerializerRegistry.java

            }
    
            @Override
            protected BooleanValueSnapshot deserialize(Decoder decoder) throws Exception {
                return new BooleanValueSnapshot(decoder.readBoolean());
            }
    
            @Override
            public Class<BooleanValueSnapshot> getIsolatableClass() {
                return BooleanValueSnapshot.class;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

      @Override
      public byte readByte() throws IOException {
        return (byte) readUnsignedByte();
      }
    
      @CanIgnoreReturnValue // to skip a byte
      @Override
      public boolean readBoolean() throws IOException {
        return readUnsignedByte() != 0;
      }
    
      /**
       * Reads a byte from the input stream checking that the end of file (EOF) has not been
       * encountered.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. 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)
  10. guava/src/com/google/common/io/LittleEndianDataInputStream.java

      @Override
      public byte readByte() throws IOException {
        return (byte) readUnsignedByte();
      }
    
      @CanIgnoreReturnValue // to skip a byte
      @Override
      public boolean readBoolean() throws IOException {
        return readUnsignedByte() != 0;
      }
    
      /**
       * Reads a byte from the input stream checking that the end of file (EOF) has not been
       * encountered.
       *
    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