Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for rc (0.15 sec)

  1. cmd/untar.go

    		if header.ModTime.UnixNano() <= 0 {
    			header.ModTime = time.Now()
    		}
    
    		// Sync upload.
    		rc := disconnectReader{r: tarReader}
    		if err := putObject(&rc, header.FileInfo(), name); err != nil {
    			rc.Close()
    			if o.ignoreErrs {
    				s3LogIf(ctx, err)
    				continue
    			}
    			return err
    		}
    		rc.Close()
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

        - [Changed](#changed)
        - [Removed](#removed)
    - [v1.30.0-rc.2](#v1300-rc2)
      - [Downloads for v1.30.0-rc.2](#downloads-for-v1300-rc2)
        - [Source Code](#source-code-1)
        - [Client Binaries](#client-binaries-1)
        - [Server Binaries](#server-binaries-1)
        - [Node Binaries](#node-binaries-1)
        - [Container Images](#container-images-1)
      - [Changelog since v1.30.0-rc.1](#changelog-since-v1300-rc1)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  3. cmd/s3-zip-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    		defer gr.Close()
    		rc, err = file.Open(gr)
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	} else {
    		rc = io.NopCloser(bytes.NewReader([]byte{}))
    	}
    
    	defer rc.Close()
    
    	if err = setObjectHeaders(w, fileObjInfo, nil, opts); err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 09 10:41:25 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  4. bin/update_crds.sh

    if [ -n "${SHA}" ]; then
      REPO=$(grep "istio.io/api" go.mod | grep "^replace" | awk '{print $4}')
    else
      SHA=$(grep "istio.io/api" go.mod | head -n1 | awk '{ print $2 }')
      if [[ ${SHA} == *"-"* && ! ${SHA} =~ -rc.[0-9]$ && ! ${SHA} =~ -beta.[0-9]$ && ! ${SHA} =~ -alpha.[0-9]$ ]]; then
        # not an official release or release candidate, so get the commit sha
        SHA=$(echo "${SHA}" | awk -F '-' '{ print $NF }')
      fi
    fi
    
    Shell Script
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 14:28:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

        - [Changed](#changed-4)
        - [Removed](#removed-4)
    - [v1.29.0-rc.2](#v1290-rc2)
      - [Downloads for v1.29.0-rc.2](#downloads-for-v1290-rc2)
        - [Source Code](#source-code-5)
        - [Client Binaries](#client-binaries-5)
        - [Server Binaries](#server-binaries-5)
        - [Node Binaries](#node-binaries-5)
        - [Container Images](#container-images-5)
      - [Changelog since v1.29.0-rc.1](#changelog-since-v1290-rc1)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 21:41:06 GMT 2024
    - 299.9K bytes
    - Viewed (1)
  6. cmd/bucket-versioning-handler.go

    			Description:    "An Object Lock configuration is present on this bucket, versioning cannot be suspended.",
    			HTTPStatusCode: http.StatusBadRequest,
    		}, r.URL)
    		return
    	}
    	if rc, _ := getReplicationConfig(ctx, bucket); rc != nil && v.Suspended() {
    		writeErrorResponse(ctx, w, APIError{
    			Code:           "InvalidBucketState",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 5K bytes
    - Viewed (0)
  7. cmd/storage-rest-server.go

    		s.writeErrorResponse(w, err)
    		return
    	}
    
    	w.Header().Set(xhttp.ContentLength, strconv.Itoa(length))
    
    	rc, err := s.getStorage().ReadFileStream(r.Context(), volume, filePath, int64(offset), int64(length))
    	if err != nil {
    		s.writeErrorResponse(w, err)
    		return
    	}
    	defer rc.Close()
    
    	rf, ok := w.(io.ReaderFrom)
    	if ok && runtime.GOOS != "windows" {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  8. internal/rest/client.go

    	rc, ok := body.(io.ReadCloser)
    	if !ok && body != nil {
    		rc = io.NopCloser(body)
    	}
    	req := &http.Request{
    		Method:     http.MethodPost,
    		URL:        &u,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		Header:     make(http.Header),
    		Body:       rc,
    		Host:       u.Host,
    	}
    	req = req.WithContext(ctx)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 14K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

        - [Removed](#removed-9)
    - [v1.28.0-rc.1](#v1280-rc1)
      - [Downloads for v1.28.0-rc.1](#downloads-for-v1280-rc1)
        - [Source Code](#source-code-10)
        - [Client Binaries](#client-binaries-10)
        - [Server Binaries](#server-binaries-10)
        - [Node Binaries](#node-binaries-10)
        - [Container Images](#container-images-10)
      - [Changelog since v1.28.0-rc.0](#changelog-since-v1280-rc0)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

        - [Removed](#removed-13)
    - [v1.27.0-rc.1](#v1270-rc1)
      - [Downloads for v1.27.0-rc.1](#downloads-for-v1270-rc1)
        - [Source Code](#source-code-14)
        - [Client Binaries](#client-binaries-14)
        - [Server Binaries](#server-binaries-14)
        - [Node Binaries](#node-binaries-14)
        - [Container Images](#container-images-14)
      - [Changelog since v1.27.0-rc.0](#changelog-since-v1270-rc0)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
Back to top