Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for firstKey (0.2 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

       */
      @Override
      public Comparator<? super K> comparator() {
        return keySet().comparator();
      }
    
      @Override
      public K firstKey() {
        return keySet().first();
      }
    
      @Override
      public K lastKey() {
        return keySet().last();
      }
    
      private ImmutableSortedMap<K, V> getSubMap(int fromIndex, int toIndex) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       */
      @Override
      public Comparator<? super K> comparator() {
        return keySet().comparator();
      }
    
      @Override
      public K firstKey() {
        return keySet().first();
      }
    
      @Override
      public K lastKey() {
        return keySet().last();
      }
    
      private ImmutableSortedMap<K, V> getSubMap(int fromIndex, int toIndex) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                //initialize a 6 rows...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/DfsTest.java

            URI dfsRoot = new URI(getDFSRootURL());
            String dfsRootPath = dfsRoot.getPath();
            int firstSep = dfsRootPath.indexOf('/', 1);
            String dfsShare;
            if ( firstSep > 0 ) {
                dfsShare = dfsRootPath.substring(1, firstSep);
            }
            else {
                dfsShare = dfsRootPath.substring(1, dfsRootPath.length() - 1);
            }
            return dfsShare;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            if ( prefixLen > 1 ) {
                prefixLen--;
                int firstSep = this.canon.indexOf('/', 1);
                if ( firstSep < 0 ) {
                    this.share = this.canon.substring(1);
                    this.unc = "\\";
                }
                else if ( firstSep == prefixLen ) {
                    this.share = this.canon.substring(1, firstSep);
                    this.unc = "\\";
                }
                else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/EnumTest.java

                Set<String> listLinks = new HashSet<>(Arrays.asList(list));
                int firstSep = link.indexOf('/');
                if ( firstSep == link.length() - 1 ) {
                    // single level
                    assertTrue("Link not found " + link, listLinks.contains(link));
                }
                else {
                    link = link.substring(0, firstSep + 1);
                    // single level
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arm64.go

    	return (int64(curQ) & 1 << 30) | (int64(curSize&3) << 10), nil
    }
    
    // ARM64RegisterListOffset generates offset encoding according to AArch64 specification.
    func ARM64RegisterListOffset(firstReg, regCnt int, arrangement int64) (int64, error) {
    	offset := int64(firstReg)
    	switch regCnt {
    	case 1:
    		offset |= 0x7 << 12
    	case 2:
    		offset |= 0xa << 12
    	case 3:
    		offset |= 0x6 << 12
    	case 4:
    		offset |= 0x2 << 12
    	default:
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    			ext := tok.String()
    			curArrangement, err := arch.ARM64RegisterArrangement(reg, name, ext)
    			if err != nil {
    				p.errorf(err.Error())
    			}
    			if firstReg == -1 {
    				// only record the first register and arrangement
    				firstReg = int(reg)
    				nextReg = firstReg
    				arrangement = curArrangement
    			} else if curArrangement != arrangement {
    				p.errorf("inconsistent arrangement in ARM64 register list")
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. istioctl/pkg/kubeinject/kubeinject.go

    	revision, injectorAddress string,
    ) (*ExternalInjector, *meshconfig.MeshConfig, error) {
    	var err error
    	// Get configs from IOP files firstly, and if not exists, get configs from files and configmaps.
    	values, meshConfig, err := getIOPConfigs()
    	if err != nil {
    		return nil, nil, err
    	}
    	if meshConfig == nil {
    		if meshConfigFile != "" {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 29 02:29:02 GMT 2024
    - 21.6K bytes
    - Viewed (0)
  10. okhttp-android/src/main/baseline-prof.txt

    HSPLokio/Segment;->pop()Lokio/Segment;
    HSPLokio/Segment;->push(Lokio/Segment;)Lokio/Segment;
    HSPLokio/Segment;->writeTo(Lokio/Segment;I)V
    HSPLokio/SegmentPool;-><clinit>()V
    HSPLokio/SegmentPool;-><init>()V
    HSPLokio/SegmentPool;->firstRef()Ljava/util/concurrent/atomic/AtomicReference;
    HSPLokio/SegmentPool;->recycle(Lokio/Segment;)V
    HSPLokio/SegmentPool;->take()Lokio/Segment;
    HSPLokio/SocketAsyncTimeout;-><init>(Ljava/net/Socket;)V
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
Back to top