Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for UploadId (0.16 sec)

  1. cmd/object-handlers_test.go

    			uploadID:         uploadID,
    			copySourceHeader: url.QueryEscape(SlashSeparator + bucketName + SlashSeparator + testObject),
    			accessKey:        credentials.AccessKey,
    			secretKey:        credentials.SecretKey,
    
    			expectedRespStatus: http.StatusNotFound,
    		},
    
    		// Test case - 4.
    		// Test case with valid byte range.
    		{
    			bucketName:       bucketName,
    			uploadID:         uploadID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	err = decoder.Decode(newResponse)
    	c.Assert(err, nil)
    	c.Assert(len(newResponse.UploadID) > 0, true)
    	// uploadID to be used for rest of the multipart operations on the object.
    	uploadID := newResponse.UploadID
    
    	// content for the part to be uploaded.
    	buffer1 := bytes.NewReader([]byte("hello world"))
    	// HTTP request for the part to be uploaded.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	opts.Internal.SourceMTime = time.Time{} // this value is saved properly in CompleteMultipartUpload()
    	var uploadID string
    	attempts := 1
    	for attempts <= 3 {
    		nctx, cancel := context.WithTimeout(ctx, time.Minute)
    		uploadID, err = c.NewMultipartUpload(nctx, bucket, object, opts)
    		cancel()
    		if err == nil {
    			break
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Uploaded Synonym file. */
        public static final String SUCCESS_upload_synonym_file = "{success.upload_synonym_file}";
    
        /** The key of the message: Uploaded Protwords file. */
        public static final String SUCCESS_upload_protwords_file = "{success.upload_protwords_file}";
    
        /** The key of the message: Uploaded Stopwords file. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // system, but will not be uploaded to remote servers.
    //
    // When telemetry is off, local counter data is neither collected nor uploaded.
    //
    // When telemetry is on, telemetry data is written to the local file system
    // and periodically sent to https://telemetry.go.dev/. Uploaded data is used to
    // help improve the Go toolchain and related tools, and it will be published as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

          echo "+++ ${basename_tar} uploaded earlier, cloud and local file md5 match (md5 = ${local_tar_md5})"
          return 0
        fi
      fi
    
      echo "${hash}" > "${tar}.sha512"
      gsutil -m -q -h "Cache-Control:private, max-age=0" cp "${tar}" "${tar}.sha512" "${staging_path}"
      gsutil -m acl ch -g all:R "${gs_url}" "${gs_url}.sha512" >/dev/null 2>&1 || true
      echo "+++ ${basename_tar} uploaded (sha512 = ${hash})"
    }
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script is for configuring kubernetes master and node instances. It is
    # uploaded in the manifests tar ball.
    
    # TODO: this script duplicates templating logic from cluster/saltbase/salt
    # using sed. It should use an actual template parser on the manifest
    # files.
    
    set -o errexit
    set -o nounset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top