Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for readBooleans (0.21 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DecoderExtensions.java

            int length = decoder.readInt();
            boolean[] array = new boolean[length];
            readBooleans(decoder, array);
            return array;
        }
    
        public static void readBooleans(Decoder decoder, boolean[] array) throws IOException {
            for (int i = 0; i < array.length; i++) {
                array[i] = decoder.readBoolean();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DefaultDaemonContext.java

                JavaLanguageVersion javaVersion = JavaLanguageVersion.of(decoder.readSmallInt());
                File registryDir = new File(decoder.readString());
                Long pid = decoder.readBoolean() ? decoder.readLong() : null;
                Integer idle = decoder.readBoolean() ? decoder.readInt() : null;
                int daemonOptCount = decoder.readInt();
                List<String> daemonOpts = new ArrayList<String>(daemonOptCount);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassDecoder.kt

            val type = classes.getInstance(id)
            if (type != null) {
                return type as Class<*>
            }
            val name = readString()
            val classLoader = if (readBoolean()) {
                val scope = readScope()
                if (readBoolean()) {
                    scope.localClassLoader
                } else {
                    scope.exportClassLoader
                }
            } else {
                this.classLoader
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/ObjectInputStreamAdapter.kt

        override fun readFloat(): Float = readContext.readFloat()
    
        override fun readDouble(): Double = readContext.readDouble()
    
        override fun readBoolean(): Boolean = readContext.readBoolean()
    
        // TODO:configuration-cache override Java 11 API for compatibility with Java 11
        // override fun readNBytes(len: Int): ByteArray = inputStream.readNBytes(len)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

        readCollection {
            val propertyName = readString()
            readPropertyValue(PropertyKind.InputProperty, propertyName) { propertyValue ->
                val optional = readBoolean()
                val isFileInputProperty = readBoolean()
                when {
                    isFileInputProperty -> {
                        val filePropertyType = readEnum<InputFilePropertyType>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/RealisedIvyModuleResolveMetadataSerializationHelper.java

            List<Exclude> excludes = readDependencyExcludes(decoder);
            String dynamicConstraintVersion = decoder.readString();
            boolean changing = decoder.readBoolean();
            boolean transitive = decoder.readBoolean();
            boolean optional = decoder.readBoolean();
            return new IvyDependencyDescriptor(requested, dynamicConstraintVersion, changing, transitive,  optional, configMappings, artifacts, excludes);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                val sourceFiles = read() as FileCollection
                val patterns = read() as PatternSet
                val duplicatesStrategy = readEnum<DuplicatesStrategy>()
                val includeEmptyDirs = readBoolean()
                val isCaseSensitive = readBoolean()
                val filteringCharset = readString()
                val dirMode = readNullableSmallInt()
                val fileMode = readNullableSmallInt()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/InputStreamBackedDecoder.java

        }
    
        @Override
        public double readDouble() throws EOFException, IOException {
            return inputStream.readDouble();
        }
    
        @Override
        public boolean readBoolean() throws EOFException, IOException {
            return inputStream.readBoolean();
        }
    
        @Override
        public String readString() throws EOFException, IOException {
            return inputStream.readUTF();
        }
    
        @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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadataSerializationHelper.java

            boolean isExternalVariant = decoder.readBoolean();
            ImmutableList<? extends ModuleComponentArtifactMetadata> artifacts = readFiles(decoder, resolveMetadata.getId());
            boolean transitive = decoder.readBoolean();
            boolean visible = decoder.readBoolean();
            ImmutableSet<String> hierarchy = ImmutableSet.copyOf(readStringSet(decoder));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/CompilerApiData.java

            }
    
            @Override
            public CompilerApiData read(Decoder decoder) throws Exception {
                boolean isAvailable = decoder.readBoolean();
                if (!isAvailable) {
                    return CompilerApiData.unavailable();
                }
                HierarchicalNameSerializer nameSerializer = classNameSerializerSupplier.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top