Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 958 for write1 (0.33 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    	assert.Equal(t, assert.ChannelHasItem(t, writes), buildPatch(ControllerVersion))
    	expectReconciled()
    	assert.ChannelIsEmpty(t, writes)
    	// Test fake doesn't actual do Apply, so manually do this
    	defaultGateway.Annotations = map[string]string{ControllerVersionAnnotation: fmt.Sprint(ControllerVersion)}
    	gws.Update(defaultGateway)
    	expectReconciled()
    	// We shouldn't write in response to our write.
    	assert.ChannelIsEmpty(t, writes)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. pkg/volume/util/atomic_writer_test.go

    		},
    	}
    
    	for _, tc := range cases {
    		targetDir, err := utiltesting.MkTmpdir("atomic-write")
    		if err != nil {
    			t.Errorf("%v: unexpected error creating tmp dir: %v", tc.name, err)
    			continue
    		}
    		defer os.RemoveAll(targetDir)
    
    		writer := &AtomicWriter{targetDir: targetDir, logContext: "-test-"}
    		err = writer.Write(tc.payload1, nil)
    		if err != nil {
    			t.Errorf("%v: unexpected error writing: %v", tc.name, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/io/pipe_test.go

    	. "io"
    	"slices"
    	"strings"
    	"testing"
    	"time"
    )
    
    func checkWrite(t *testing.T, w Writer, data []byte, c chan int) {
    	n, err := w.Write(data)
    	if err != nil {
    		t.Errorf("write: %v", err)
    	}
    	if n != len(data) {
    		t.Errorf("short write: %d != %d", n, len(data))
    	}
    	c <- 0
    }
    
    // Test a single read/write pair.
    func TestPipe1(t *testing.T) {
    	c := make(chan int)
    	r, w := Pipe()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K 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. 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)
  6. cmd/kubeadm/app/cmd/config.go

    }
    
    // PrintObj is an implementation of ResourcePrinter.PrintObj for plain text output
    func (itp *imageTextPrinter) PrintObj(obj runtime.Object, writer io.Writer) error {
    	var err error
    	if imgs, ok := obj.(*outputapiv1alpha3.Images); ok {
    		_, err = fmt.Fprintln(writer, strings.Join(imgs.Images, "\n"))
    	} else {
    		err = errors.New("unexpected object type")
    	}
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		w.Write(headerContentLength)
    		w.Write(h.contentLength)
    		w.Write(crlf)
    	}
    	for i, v := range []string{h.contentType, h.connection, h.transferEncoding} {
    		if v != "" {
    			w.Write(extraHeaderKeys[i])
    			w.Write(colonSpace)
    			w.WriteString(v)
    			w.Write(crlf)
    		}
    	}
    }
    
    // writeHeader finalizes the header sent to the client and writes it
    // to cw.res.conn.bufw.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/encoding/binary/binary_test.go

    	buf := new(bytes.Buffer)
    	var w io.Writer = buf
    	b.SetBytes(2 * (1 + 2 + 4 + 8))
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		buf.Reset()
    		Write(w, BigEndian, s.Int8)
    		Write(w, BigEndian, s.Int16)
    		Write(w, BigEndian, s.Int32)
    		Write(w, BigEndian, s.Int64)
    		Write(w, BigEndian, s.Uint8)
    		Write(w, BigEndian, s.Uint16)
    		Write(w, BigEndian, s.Uint32)
    		Write(w, BigEndian, s.Uint64)
    	}
    	b.StopTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. src/encoding/binary/binary.go

    // with blank (_) field names.
    func Write(w io.Writer, order ByteOrder, data any) error {
    	// Fast path for basic types and slices.
    	if n, bs := intDataSize(data); n != 0 {
    		if bs == nil {
    			bs = make([]byte, n)
    			encodeFast(bs, order, data)
    		}
    
    		_, err := w.Write(bs)
    		return err
    	}
    
    	// Fallback to reflect-based encoding.
    	v := reflect.Indirect(reflect.ValueOf(data))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. internal/deadlineconn/deadlineconn.go

    func (c *DeadlineConn) Read(b []byte) (n int, err error) {
    	c.setReadDeadline()
    	n, err = c.Conn.Read(b)
    	return n, err
    }
    
    // Write - writes data to the connection.
    func (c *DeadlineConn) Write(b []byte) (n int, err error) {
    	c.setWriteDeadline()
    	n, err = c.Conn.Write(b)
    	return n, err
    }
    
    // WithReadDeadline sets a new read side net.Conn deadline.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top