Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InvalidArgument (0.25 sec)

  1. tensorflow/c/c_api.cc

                                          run_options->data, run_options->length)) {
          status->status = InvalidArgument("Unparseable RunOptions proto");
          return;
        }
        if (run_metadata != nullptr && run_metadata->data != nullptr) {
          status->status =
              InvalidArgument("Passing non-empty run_metadata is invalid.");
          return;
        }
    
        RunMetadata run_metadata_proto;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	response4, err := s.client.Do(request)
    	c.Assert(err, nil)
    	// Since max-keys parameter in the ListMultipart request set to invalid value of -2,
    	// its expected to fail with error message "InvalidArgument".
    	verifyError(c, response4, "InvalidArgument", "Part number must be an integer between 1 and 10000, inclusive", http.StatusBadRequest)
    }
    
    // TestObjectValidMD5 - First uploads an object with a valid Content-Md5 header and verifies the status,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    			dataLen:            len(bytesData),
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusBadRequest,
    			wantAPICode:        "InvalidArgument",
    		},
    		// Test Case with invalid Content-Md5 value
    		3: {
    			bucketName:         bucketName,
    			objectName:         objectName,
    			headers:            invalidMD5Header,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top