Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mseq (0.01 sec)

  1. guava/src/com/google/common/io/CharSource.java

        protected final CharSequence seq;
    
        protected CharSequenceCharSource(CharSequence seq) {
          this.seq = checkNotNull(seq);
        }
    
        @Override
        public Reader openStream() {
          return new CharSequenceReader(seq);
        }
    
        @Override
        public String read() {
          return seq.toString();
        }
    
        @Override
        public boolean isEmpty() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. cmd/admin-heal-ops.go

    		}
    	}
    
    	ahs.Lock()
    	defer ahs.Unlock()
    
    	// Check if new heal sequence to be started overlaps with any
    	// existing, running sequence
    	hpath := pathJoin(h.bucket, h.object)
    	for k, hSeq := range ahs.healSeqMap {
    		if !hSeq.hasEnded() && (HasPrefix(k, hpath) || HasPrefix(hpath, k)) {
    			errMsg = "The provided heal sequence path overlaps with an existing " +
    				fmt.Sprintf("heal path: %s", k)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:58:27 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top