Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for writeInt8 (0.21 sec)

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

         */
        long readSmallLong() throws EOFException, IOException;
    
        /**
         * Reads a signed 32 bit int value. Can read any value that was written using {@link Encoder#writeInt(int)}.
         *
         * @throws EOFException when the end of the byte stream is reached before the int value can be fully read.
         */
        int readInt() throws EOFException, IOException;
    
        /**
    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-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
            newIsolatables[0].isolate() == list
        }
    
        def serialize(Isolatable<?>... isolatables) {
            encoder.writeInt(isolatables.size())
            isolatables.each { serializer.writeIsolatable(encoder, it) }
            encoder.flush()
        }
    
        Isolatable<?>[] deserialize() {
            def isolatables = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                writeClass(serviceDetails.implementationType)
                writeBoolean(serviceDetails.isResolved)
                if (serviceDetails.isResolved) {
                    write(serviceDetails.parameters)
                    writeInt(serviceDetails.maxUsages)
                }
            }
        }
    
        override suspend fun ReadContext.decode(): BuildServiceProvider<*, *>? =
            decodePreservingSharedIdentity {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    		// function, this would be indistinguishable from an
    		// end entry. Fudge it.
    		if begin == 0 && end == 0 {
    			end = 1
    		}
    
    		if ctxt.UseBASEntries {
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(begin))
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(end))
    		} else {
    			listSym.WriteCURelativeAddr(ctxt, listSym.Size, startPC, int64(begin))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            override fun getOutputStream(): OutputStream =
                undefined()
    
            override fun encodeChunked(writeAction: Encoder.EncodeAction<Encoder>) =
                undefined()
    
            override fun writeInt(value: Int): Unit =
                undefined()
        }
    
        private
        class PlaybackReadContext(values: Iterable<Any?>) : ReadContext {
    
            private
            val reader = values.iterator()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         * of stored included build directories.
         */
        suspend fun DefaultWriteContext.writeRootBuildState(build: VintageGradleBuild) {
            writeBuildInvocationId()
            writeRootBuild(build).also {
                writeInt(0x1ecac8e)
            }
        }
    
        suspend fun DefaultReadContext.readRootBuildState(
            graph: BuildTreeWorkGraph,
            graphBuilder: BuildTreeWorkGraphBuilder?,
            loadAfterStore: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashSet.java

          this.size = 0;
        }
      }
    
      @J2ktIncompatible
      private void writeObject(ObjectOutputStream stream) throws IOException {
        stream.defaultWriteObject();
        stream.writeInt(size());
        for (E e : this) {
          stream.writeObject(e);
        }
      }
    
      @SuppressWarnings("unchecked")
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CompactHashSet.java

          this.size = 0;
        }
      }
    
      @J2ktIncompatible
      private void writeObject(ObjectOutputStream stream) throws IOException {
        stream.defaultWriteObject();
        stream.writeInt(size());
        for (E e : this) {
          stream.writeObject(e);
        }
      }
    
      @SuppressWarnings("unchecked")
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. cmd/storage-datatypes_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteArrayHeader(uint32(len(z.Results)))
    	if err != nil {
    		err = msgp.WrapError(err, "Results")
    		return
    	}
    	for za0001 := range z.Results {
    		err = en.WriteInt(z.Results[za0001])
    		if err != nil {
    			err = msgp.WrapError(err, "Results", za0001)
    			return
    		}
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/CompactHashMap.java

          this.size = 0;
        }
      }
    
      @J2ktIncompatible
      private void writeObject(ObjectOutputStream stream) throws IOException {
        stream.defaultWriteObject();
        stream.writeInt(size());
        Iterator<Entry<K, V>> entryIterator = entrySetIterator();
        while (entryIterator.hasNext()) {
          Entry<K, V> e = entryIterator.next();
          stream.writeObject(e.getKey());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top