Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for rs (0.12 sec)

  1. guava/src/com/google/common/base/Ascii.java

       * fashion, except that their hierarchical relationship shall be: FS is the most inclusive, then
       * GS, then RS, and US is least inclusive. (The content and length of a File, Group, Record, or
       * Unit are not specified.)
       *
       * @since 8.0
       */
      public static final byte RS = 30;
    
      /**
       * Unit Separator: These four information separators may be used within data in optional fashion,
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  2. common/scripts/fix_copyright_banner.sh

    set -e
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    for fn in "$@"; do
      if ! grep -L -q -e "Apache License, Version 2" -e "Copyright" "${fn}"; then
        if [[ "${fn}" == *.go || "${fn}" == *.rs ]]; then
          newfile=$(cat "${WD}/copyright-banner-go.txt" "${fn}")
          echo "${newfile}" > "${fn}"
          echo "Fixing license: ${fn}"
        else
          echo "Cannot fix license: ${fn}. Unknown file type"
        fi
      fi
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Nov 17 04:35:57 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

       * fashion, except that their hierarchical relationship shall be: FS is the most inclusive, then
       * GS, then RS, and US is least inclusive. (The content and length of a File, Group, Record, or
       * Unit are not specified.)
       *
       * @since 8.0
       */
      public static final byte RS = 30;
    
      /**
       * Unit Separator: These four information separators may be used within data in optional fashion,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/ReadWriteTest.java

            byte buffer[] = new byte[bufSize];
            long p = 0;
            Random r = getRandom();
            while ( p < length ) {
    
                int rs = Math.min(bufSize, (int) ( length - p ));
                int read = is.read(buffer, 0, rs);
                if ( read < 0 ) {
                    fail("Unexpected EOF at " + p);
                }
    
                byte verify[] = new byte[read];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    		}
    	}
    
    	rs.Status = ResyncCanceled
    	rs.LastUpdate = UTCNow()
    	if err := saveSiteResyncMetadata(ctx, rs, objAPI); err != nil {
    		return res, err
    	}
    	select {
    	case globalReplicationPool.resyncer.resyncCancelCh <- struct{}{}:
    	case <-ctx.Done():
    	}
    
    	globalSiteResyncMetrics.updateState(rs)
    
    	res.Status = rs.Status.String()
    	return res, nil
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  6. cmd/object-api-utils.go

    // not all run!).
    func NewGetObjectReader(rs *HTTPRangeSpec, oi ObjectInfo, opts ObjectOptions) (
    	fn ObjReaderFn, off, length int64, err error,
    ) {
    	if opts.CheckPrecondFn != nil && opts.CheckPrecondFn(oi) {
    		return nil, 0, 0, PreConditionFailed{}
    	}
    
    	if rs == nil && opts.PartNumber > 0 {
    		rs = partNumberToRangeSpec(oi, opts.PartNumber)
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 11 11:55:34 GMT 2024
    - 35.6K bytes
    - Viewed (1)
  7. cmd/bucket-replication.go

    func newresyncer() *replicationResyncer {
    	rs := replicationResyncer{
    		statusMap:      make(map[string]BucketReplicationResyncStatus),
    		workerSize:     resyncWorkerCnt,
    		resyncCancelCh: make(chan struct{}, resyncWorkerCnt),
    		workerCh:       make(chan struct{}, resyncWorkerCnt),
    	}
    	for i := 0; i < rs.workerSize; i++ {
    		rs.workerCh <- struct{}{}
    	}
    	return &rs
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  8. docs/debugging/xl-meta/main.go

    			if missing == 0 {
    				break
    			}
    			fmt.Println("* Setup: Data shards:", k, "- Parity blocks:", len(v))
    			rs, err := reedsolomon.New(k, shards-k)
    			if err != nil {
    				return err
    			}
    			split, err := rs.Split(mapped)
    			if err != nil {
    				return err
    			}
    			splitFilled, err := rs.Split(filled)
    			if err != nil {
    				return err
    			}
    			ok := len(splitFilled)
    			for i, sh := range splitFilled {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 17:56:22 GMT 2024
    - 20.2K bytes
    - Viewed (1)
  9. cmd/object-multipart-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	getObjectNInfo := objectAPI.GetObjectNInfo
    
    	// Get request range.
    	var rs *HTTPRangeSpec
    	var parseRangeErr error
    	if rangeHeader := r.Header.Get(xhttp.AmzCopySourceRange); rangeHeader != "" {
    		rs, parseRangeErr = parseCopyPartRangeSpec(rangeHeader)
    	} else {
    		// This check is to see if client specified a header but the value
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 39K bytes
    - Viewed (0)
  10. cmd/admin-handlers-pools.go

    					return
    				}
    			}
    		}
    	}
    
    	pools, ok := objectAPI.(*erasureServerPools)
    	if !ok {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrNotImplemented), r.URL)
    		return
    	}
    
    	rs, err := rebalanceStatus(ctx, pools)
    	if err != nil {
    		if errors.Is(err, errRebalanceNotStarted) || errors.Is(err, errConfigNotFound) {
    			writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminRebalanceNotStarted), r.URL)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 10.9K bytes
    - Viewed (0)
Back to top