Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 136 for writelns (0.65 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryContent.java

                }
            }
    
            private void writeStopEvents(Encoder encoder, DaemonRegistryContent registry) throws Exception {
                List<DaemonStopEvent> stopEvents = registry.stopEvents;
                encoder.writeInt(stopEvents.size());
                for (DaemonStopEvent stopEvent : stopEvents) {
                    DaemonStopEvent.SERIALIZER.write(encoder, stopEvent);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/LogEventSerializer.java

            this.logLevelSerializer = logLevelSerializer;
            this.throwableSerializer = throwableSerializer;
        }
    
        @Override
        public void write(Encoder encoder, LogEvent event) throws Exception {
            encoder.writeLong(event.getTimestamp());
            encoder.writeString(event.getCategory());
            logLevelSerializer.write(encoder, event.getLogLevel());
            encoder.writeNullableString(event.getMessage());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/InitialTransformStepNodeCodec.kt

    ) : AbstractTransformStepNodeCodec<TransformStepNode.InitialTransformStepNode>() {
    
        override suspend fun WriteContext.doEncode(value: TransformStepNode.InitialTransformStepNode) {
            writeLong(value.transformStepNodeId)
            write(value.targetComponentVariant)
            write(value.sourceAttributes)
            write(unpackTransformStep(value))
            write(value.inputArtifact)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/VisitableURLClassLoaderSpecSerializer.java

                encoder.writeByte(MIXIN_CLASSLOADER_SPEC);
            } else {
                encoder.writeByte(VISITABLE_URL_CLASSLOADER_SPEC);
            }
    
            encoder.writeString(spec.getName());
            encoder.writeInt(spec.getClasspath().size());
            for (URL url : spec.getClasspath()) {
                encoder.writeString(url.toString());
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/MapSerializer.java

                valueMap.put(key, value);
            }
            return valueMap;
        }
    
        @Override
        public void write(Encoder encoder, Map<U, V> value) throws Exception {
            encoder.writeInt(value.size());
            for (Map.Entry<U, V> entry : value.entrySet()) {
                keySerializer.write(encoder, entry.getKey());
                valueSerializer.write(encoder, entry.getValue());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/package-info.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    /**
     * Utility methods and classes for I/O; for example input streams, output streams, readers, writers,
     * and files.
     *
     * <p>At the core of this package are the Source/Sink types: {@link ByteSource ByteSource}, {@link
     * CharSource CharSource}, {@link ByteSink ByteSink} and {@link CharSink CharSink}. They are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/ws/MessageInflater.kt

      fun inflate(buffer: Buffer) {
        require(deflatedBytes.size == 0L)
    
        if (noContextTakeover) {
          inflater.reset()
        }
    
        deflatedBytes.writeAll(buffer)
        deflatedBytes.writeInt(OCTETS_TO_ADD_BEFORE_INFLATION)
    
        val totalBytesToRead = inflater.bytesRead + deflatedBytes.size
    
        // We cannot read all, as the source does not close.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/FilteringClassLoaderSpecSerializer.java

            encodeStrings(encoder, spec.getResourcePrefixes());
        }
    
        private void encodeStrings(Encoder encoder, Set<String> strings) throws Exception {
            encoder.writeInt(strings.size());
            for (String string : strings) {
                encoder.writeString(string);
            }
        }
    
        @Override
        public FilteringClassLoader.Spec read(Decoder decoder) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockPacketPayload.java

            ByteArrayOutputStream out = new ByteArrayOutputStream();
            DataOutputStream dataOutput = new DataOutputStream(out);
            try {
                dataOutput.writeByte(PROTOCOL_VERSION);
                dataOutput.writeLong(lockId);
                dataOutput.writeByte(type.ordinal());
                dataOutput.flush();
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. internal/bucket/replication/datatypes_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = Type(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z Type) EncodeMsg(en *msgp.Writer) (err error) {
    	err = en.WriteInt(int(z))
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z Type) MarshalMsg(b []byte) (o []byte, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top