Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for write1 (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      %read = "tf.TensorArrayReadV3"(%ta#0, %index, %write) : (tensor<!tf_type.resource>, tensor<i32>, tensor<f32>) -> tensor<3xf32>
      // CHECK-NOT: TensorArrayCloseV3
      "tf.TensorArrayCloseV3"(%ta#0) : (tensor<!tf_type.resource>) -> ()
      // CHECK: return %[[READ]] : tensor<3xf32>
      func.return %read: tensor<3xf32>
    }
    
    // -----
    
    // Test inferring shape from the first write.
    
    // CHECK-LABEL: func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    				continue
    			}
    			if e := buf.Flush(); e != nil {
    				t.Errorf("%s: buf.Flush = %v", context, e)
    			}
    
    			written := w.Bytes()
    			if len(written) != nwrite {
    				t.Errorf("%s: %d bytes written", context, len(written))
    			}
    			for l := 0; l < len(written); l++ {
    				if written[l] != data[l] {
    					t.Errorf("wrong bytes written")
    					t.Errorf("want=%q", data[0:len(written)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    	out.Write32(uint32(e.Paddr))
    	out.Write32(uint32(e.Filesz))
    	out.Write32(uint32(e.Memsz))
    	out.Write32(uint32(e.Flags))
    	out.Write32(uint32(e.Align))
    }
    
    func elf64shdr(out *OutBuf, e *ElfShdr) {
    	out.Write32(e.Name)
    	out.Write32(uint32(e.Type))
    	out.Write64(uint64(e.Flags))
    	out.Write64(e.Addr)
    	out.Write64(e.Off)
    	out.Write64(e.Size)
    	out.Write32(e.Link)
    	out.Write32(e.Info)
    	out.Write64(e.Addralign)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        TF_Int64Tensor:$step,
        TF_StrTensor:$tensor
      );
    
      let results = (outs);
    }
    
    def TF_WriteScalarSummaryOp : TF_Op<"WriteScalarSummary", []> {
      let summary = "Writes a `Summary` protocol buffer with scalar values.";
    
      let description = [{
    The input `tag` and `value` must have the scalars.
    
    writer: A handle to a summary writer.
    step: The step to write the summary for.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	return off
    }
    
    // write writes string table t into the output file.
    func (t *xcoffStringTable) write(out *OutBuf) {
    	out.Write32(uint32(t.size()))
    	for _, s := range t.strings {
    		out.WriteString(s)
    		out.Write8(0)
    	}
    }
    
    // write writes XCOFF section sect into the output file.
    func (sect *XcoffScnHdr64) write(ctxt *Link) {
    	binary.Write(ctxt.Out, binary.BigEndian, sect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/net/http/request.go

    // hasn't been set to "identity", Write adds "Transfer-Encoding:
    // chunked" to the header. Body is closed after it is sent.
    func (r *Request) Write(w io.Writer) error {
    	return r.write(w, false, nil, nil)
    }
    
    // WriteProxy is like [Request.Write] but writes the request in the form
    // expected by an HTTP proxy. In particular, [Request.WriteProxy] writes the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    			cfgNames += ", "
    		}
    	}
    	fmt.Fprintf(writer, "   %s\n", cfgNames)
    }
    
    func printPeerAuthentication(writer io.Writer, pa authn.MergedPeerAuthentication) {
    	fmt.Fprintf(writer, "Effective PeerAuthentication:\n")
    	fmt.Fprintf(writer, "   Workload mTLS mode: %s\n", pa.Mode.String())
    	if len(pa.PerPort) != 0 {
    		fmt.Fprintf(writer, "   Port Level mTLS mode:\n")
    		for port, mode := range pa.PerPort {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2_gen.go

    		return
    	}
    	if (zb0001Mask & 0x1) == 0 { // if not omitted
    		// write "V2Obj"
    		err = en.Append(0xa5, 0x56, 0x32, 0x4f, 0x62, 0x6a)
    		if err != nil {
    			return
    		}
    		if z.ObjectV2 == nil {
    			err = en.WriteNil()
    			if err != nil {
    				return
    			}
    		} else {
    			// map header, size 1
    			// write "DDir"
    			err = en.Append(0x81, 0xa4, 0x44, 0x44, 0x69, 0x72)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	}
    
    	if transcript != nil {
    		transcript.Write(data)
    	}
    
    	return m, nil
    }
    
    var (
    	errShutdown = errors.New("tls: protocol is shutdown")
    )
    
    // Write writes data to the connection.
    //
    // As Write calls [Conn.Handshake], in order to prevent indefinite blocking a deadline
    // must be set for both [Conn.Read] and Write before Write is called when the handshake
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	-coverprofile cover.out
    	    Write a coverage profile to the file after all tests have passed.
    	    Sets -cover.
    
    	-cpuprofile cpu.out
    	    Write a CPU profile to the specified file before exiting.
    	    Writes test binary as -c would.
    
    	-memprofile mem.out
    	    Write an allocation profile to the file after all tests have passed.
    	    Writes test binary as -c would.
    
    	-memprofilerate n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top