Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for readNullableSmallInt (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/StringDeduplicatingDecoder.java

        @Override
        public int readSmallInt() throws EOFException, IOException {
            return delegate.readSmallInt();
        }
    
        @Nullable
        @Override
        public Integer readNullableSmallInt() throws IOException {
            return delegate.readNullableSmallInt();
        }
    
        @Override
        public short readShort() throws EOFException, IOException {
            return delegate.readShort();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 11:24:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                val includeEmptyDirs = readBoolean()
                val isCaseSensitive = readBoolean()
                val filteringCharset = readString()
                val dirMode = readNullableSmallInt()
                val fileMode = readNullableSmallInt()
                val actions = readList().uncheckedCast<List<Action<FileCopyDetails>>>()
                val children = readList().uncheckedCast<List<CopySpecInternal>>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractDecoder.java

            return readInt();
        }
    
        @Override
        public long readSmallLong() throws EOFException, IOException {
            return readLong();
        }
    
        @Nullable
        @Override
        public Integer readNullableSmallInt() throws IOException {
            if (readBoolean()) {
                return readSmallInt();
            } else {
                return null;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Decoder.java

         */
        int readSmallInt() throws EOFException, IOException;
    
        /**
         * Reads a nullable signed 32 bit int value.
         *
         * @see #readSmallInt()
         */
        @Nullable
        Integer readNullableSmallInt() throws EOFException, IOException;
    
        /**
         * Reads a short value that was written with {@link Encoder#writeShort(short)}
         *
    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/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            override suspend fun forIncompatibleType(path: String, action: suspend () -> Unit) =
                undefined()
    
            override fun readInt(): Int =
                undefined()
    
            override fun readNullableSmallInt(): Int? =
                undefined()
    
            override fun readShort(): Short =
                undefined()
    
            override fun readFloat(): Float =
                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