Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for writeNullableSmallInt (0.35 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                writeBoolean(value.includeEmptyDirs)
                writeBoolean(value.isCaseSensitive)
                writeString(value.filteringCharset)
                writeNullableSmallInt(value.dirPermissions.map(ConfigurableFilePermissions::toUnixNumeric).orNull)
                writeNullableSmallInt(value.filePermissions.map(ConfigurableFilePermissions::toUnixNumeric).orNull)
                writeCollection(value.copyActions)
                writeCollection(value.children)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractEncoder.java

            writeInt(value);
        }
    
        @Override
        public void writeSmallLong(long value) throws IOException {
            writeLong(value);
        }
    
        @Override
        public void writeNullableSmallInt(@Nullable Integer value) throws IOException {
            if (value == null) {
                writeBoolean(false);
            } else {
                writeBoolean(true);
                writeSmallInt(value);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

        /**
         * Writes a nullable signed 32 bit int value whose value is likely to be small and positive but may not be.
         *
         * @see #writeSmallInt(int)
         */
        void writeNullableSmallInt(@Nullable Integer value) throws IOException;
    
        /**
         * Writes a boolean value.
         */
        void writeBoolean(boolean value) throws IOException;
    
        /**
         * Writes a non-null string value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                undefined()
    
            override fun writeNullableString(value: CharSequence?): Unit =
                undefined()
    
            override fun writeNullableSmallInt(value: Int?): Unit =
                undefined()
    
            override fun writeLong(value: Long): Unit =
                undefined()
    
            override fun writeShort(value: Short) =
                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