Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for maxint (0.07 sec)

  1. cmd/server_test.go

    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// assert the status code of the response.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// constructing http request to delete the bucket.
    	// making an attempt to delete an non-empty bucket.
    	// expected to fail.
    	request, err = newTestSignedRequest(http.MethodDelete, getDeleteBucketURL(s.endPoint, bucketName),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

              TFL_OperandDimIsAtMost<1, 0, 8>]>>,
        QuantizableResult,
        Pure]> {
      let summary = "Broadcast an array for a compatible shape.";
    
      let description = [{
    Broadcasting is the process of making arrays to have compatible shapes
    for arithmetic operations. Two shapes are compatible if for each
    dimension pair they are either equal or one of them is one. When trying
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    		defer conn.Close()
    		_, err = conn.Write([]byte("POST / HTTP/1.1\r\nConnection: close\r\nHost: foo\r\nContent-Length: 100000\r\n\r\n"))
    		if err != nil {
    			errCh <- err
    			return
    		}
    		// And now just block, making the server block on our
    		// 100000 bytes of body that will never arrive.
    		<-closeConn
    	}()
    	select {
    	case err := <-readErrCh:
    		if err == nil {
    			t.Error("Read was nil. Expected error.")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top