Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 146 for writeAt (0.19 sec)

  1. cmd/site-replication-utils_gen.go

    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *SiteResyncStatus) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 6
    	// write "v"
    	err = en.Append(0x86, 0xa1, 0x76)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.Version)
    	if err != nil {
    		err = msgp.WrapError(err, "Version")
    		return
    	}
    	// write "ss"
    	err = en.Append(0xa2, 0x73, 0x73)
    	if err != nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 14 15:16:40 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketInetAddress.java

                return InetAddress.getByAddress(decoder.readBinary());
            }
    
            @Override
            public void write(Encoder encoder, SocketInetAddress address) throws Exception {
                writeAddress(encoder, address);
                encoder.writeInt(address.port);
            }
    
            private void writeAddress(Encoder encoder, SocketInetAddress address) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractEncoder.java

            @Override
            public void write(byte[] buffer) throws IOException {
                writeBytes(buffer);
            }
    
            @Override
            public void write(byte[] buffer, int offset, int length) throws IOException {
                writeBytes(buffer, offset, length);
            }
    
            @Override
            public void write(int b) throws IOException {
                writeByte((byte) b);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu-resource-read-for-write.mlir

      // CHECK-SAME: _replication_info = "write", _xla_compile_device_type = "TPU"
      %0:2 = "tf_device.cluster_func"(%arg0, %arg1) {_replication_info = "write", _xla_compile_device_type = "TPU", func = @write_func} : (tensor<i32>, tensor<f32>) -> (tensor<f32>, tensor<i32>)
      // CHECK-NEXT: "tf.AssignVariableOp"([[ARG2]], [[CLUSTER]]#1)
      "tf.AssignVariableOp"(%arg2, %0#1) : (tensor<*x!tf_type.resource<tensor<i32>>>, tensor<i32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 16:54:40 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/dynamicversions/DefaultModuleVersionsCache.java

            @Override
            public void write(Encoder encoder, ModuleVersionsCacheEntry value) throws Exception {
                Set<String> versions = value.moduleVersionListing;
                encoder.writeInt(versions.size());
                for (String version : versions) {
                    encoder.writeString(version);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            public void writeAllOutput(long classId, TestOutputEvent.Destination destination, java.io.Writer writer) {
                doRead(classId, 0, true, destination, writer);
            }
    
            public void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, java.io.Writer writer) {
                doRead(classId, 0, false, destination, writer);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/SnapshotSerializer.java

                    write(encoder, valueSnapshot);
                }
            } else if (snapshot instanceof ImplementationSnapshot) {
                ImplementationSnapshot implementationSnapshot = (ImplementationSnapshot) snapshot;
                encoder.writeSmallInt(IMPLEMENTATION_SNAPSHOT);
                implementationSnapshotSerializer.write(encoder, implementationSnapshot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* write_0 = MakeWrite(root, "W0");
      Node* neutral_0 = MakeNeutral(root, "N0");
      Node* read_0 = MakeRead(root, "R0");
      Node* write_1 = MakeWrite(root, "W1");
      Node* neutral_1 = MakeNeutral(root, "N1");
      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
      root.graph()->AddControlEdge(neutral_0, read_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

        /* Write out various test values in LITTLE ENDIAN FORMAT */
        out.write(new byte[] {-100, 100});
        out.writeBoolean(true);
        out.writeBoolean(false);
        out.writeByte(100);
        out.writeByte(-100);
        out.writeByte((byte) 200);
        out.writeChar('a');
        out.writeShort((short) -30000);
        out.writeShort((short) 50000);
        out.writeInt(0xCAFEBABE);
        out.writeLong(0xDEADBEEFCAFEBABEL);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

        /* Write out various test values in LITTLE ENDIAN FORMAT */
        out.write(new byte[] {-100, 100});
        out.writeBoolean(true);
        out.writeBoolean(false);
        out.writeByte(100);
        out.writeByte(-100);
        out.writeByte((byte) 200);
        out.writeChar('a');
        out.writeShort((short) -30000);
        out.writeShort((short) 50000);
        out.writeInt(0xCAFEBABE);
        out.writeLong(0xDEADBEEFCAFEBABEL);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
Back to top