Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 124 for endIndex (0.17 sec)

  1. android/guava/src/com/google/common/escape/UnicodeEscaper.java

        int charsSkipped = end - unescapedChunkStart;
        if (charsSkipped > 0) {
          int endIndex = destIndex + charsSkipped;
          if (dest.length < endIndex) {
            dest = growBuffer(dest, destIndex, endIndex);
          }
          s.getChars(unescapedChunkStart, end, dest, destIndex);
          destIndex = endIndex;
        }
        return new String(dest, 0, destIndex);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/escape/UnicodeEscaper.java

        int charsSkipped = end - unescapedChunkStart;
        if (charsSkipped > 0) {
          int endIndex = destIndex + charsSkipped;
          if (dest.length < endIndex) {
            dest = growBuffer(dest, destIndex, endIndex);
          }
          s.getChars(unescapedChunkStart, end, dest, destIndex);
          destIndex = endIndex;
        }
        return new String(dest, 0, destIndex);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  3. src/strconv/ftoaryu.go

    		central++
    	}
    	// We know where the number ends, fill directly
    	endindex -= trimmed
    	v := central
    	n := endindex
    	for n > d.nd {
    		v1, v2 := v/100, v%100
    		d.d[n] = smallsString[2*v2+1]
    		d.d[n-1] = smallsString[2*v2+0]
    		n -= 2
    		v = v1
    	}
    	if n == d.nd {
    		d.d[n] = byte(v + '0')
    	}
    	d.nd = endindex + 1
    	d.dp = d.nd + trimmed
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  4. helm/minio/templates/statefulset.yaml

                "-ce",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

       * end).trimmed()}.
       */
      public ImmutableLongArray subArray(int startIndex, int endIndex) {
        Preconditions.checkPositionIndexes(startIndex, endIndex, length());
        return startIndex == endIndex
            ? EMPTY
            : new ImmutableLongArray(array, start + startIndex, start + endIndex);
      }
    
      /**
       * Returns an immutable <i>view</i> of this array's values as a {@code List}; note that {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java

       * end).trimmed()}.
       */
      public ImmutableDoubleArray subArray(int startIndex, int endIndex) {
        Preconditions.checkPositionIndexes(startIndex, endIndex, length());
        return startIndex == endIndex
            ? EMPTY
            : new ImmutableDoubleArray(array, start + startIndex, start + endIndex);
      }
    
      /**
       * Returns an immutable <i>view</i> of this array's values as a {@code List}; note that {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

       * end).trimmed()}.
       */
      public ImmutableIntArray subArray(int startIndex, int endIndex) {
        Preconditions.checkPositionIndexes(startIndex, endIndex, length());
        return startIndex == endIndex
            ? EMPTY
            : new ImmutableIntArray(array, start + startIndex, start + endIndex);
      }
    
      /**
       * Returns an immutable <i>view</i> of this array's values as a {@code List}; note that {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    			}
    
    			// check cache's startIndex, endIndex and all elements.
    			if store.startIndex != test.expectStartIndex {
    				t.Errorf("expect startIndex %d, but get %d", test.expectStartIndex, store.startIndex)
    			}
    			if store.endIndex != test.startIndex+test.eventCount {
    				t.Errorf("expect endIndex %d get %d", test.startIndex+test.eventCount, store.endIndex)
    			}
    			if !checkCacheElements(store) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/ImmutableIntArray.java

       * end).trimmed()}.
       */
      public ImmutableIntArray subArray(int startIndex, int endIndex) {
        Preconditions.checkPositionIndexes(startIndex, endIndex, length());
        return startIndex == endIndex
            ? EMPTY
            : new ImmutableIntArray(array, start + startIndex, start + endIndex);
      }
    
      private Spliterator.OfInt spliterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

       * end).trimmed()}.
       */
      public ImmutableDoubleArray subArray(int startIndex, int endIndex) {
        Preconditions.checkPositionIndexes(startIndex, endIndex, length());
        return startIndex == endIndex
            ? EMPTY
            : new ImmutableDoubleArray(array, start + startIndex, start + endIndex);
      }
    
      private Spliterator.OfDouble spliterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
Back to top