Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for imap3 (0.03 sec)

  1. src/net/lookup.go

    	"udp": {
    		"domain": 53,
    	},
    	"tcp": {
    		"ftp":         21,
    		"ftps":        990,
    		"gopher":      70, // ʕ◔ϖ◔ʔ
    		"http":        80,
    		"https":       443,
    		"imap2":       143,
    		"imap3":       220,
    		"imaps":       993,
    		"pop3":        110,
    		"pop3s":       995,
    		"smtp":        25,
    		"submissions": 465,
    		"ssh":         22,
    		"telnet":      23,
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/dwarfgen/dwinl.go

    func addRange(calls []dwarf.InlCall, start, end int64, ii int, imap map[int]int) {
    	if start == -1 {
    		panic("bad range start")
    	}
    	if end == -1 {
    		panic("bad range end")
    	}
    	if ii == -1 {
    		return
    	}
    	if start == end {
    		return
    	}
    	// Append range to correct inlined call
    	callIdx, found := imap[ii]
    	if !found {
    		base.Fatalf("can't find inlIndex %d in imap for prog at %d\n", ii, start)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/EnumHashBiMapTest.java

        /* Test that it can be empty. */
        EnumHashBiMap<Currency, String> emptyBimap = EnumHashBiMap.create(Currency.class);
        EnumHashBiMap<Currency, String> bimap3 = EnumHashBiMap.create(emptyBimap);
        assertEquals(bimap3, emptyBimap);
      }
    
      public void testEnumBiMapConstructor() {
        /* Test that it copies existing entries. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/EnumBiMapTest.java

        /* Test that it can be empty. */
        EnumBiMap<Currency, Country> emptyBimap = EnumBiMap.create(Currency.class, Country.class);
        EnumBiMap<Currency, Country> bimap3 = EnumBiMap.create(emptyBimap);
        assertEquals(bimap3, emptyBimap);
      }
    
      @GwtIncompatible // keyType
      public void testKeyType() {
        EnumBiMap<Currency, Country> bimap = EnumBiMap.create(Currency.class, Country.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    	if !tag.FixCase(form, key) {
    		return 0, ErrSyntax
    	}
    	i := idx.Index(key)
    	if i == -1 {
    		return 0, NewValueError(key)
    	}
    	return i, nil
    }
    
    func searchUint(imap []uint16, key uint16) int {
    	return sort.Search(len(imap), func(i int) bool {
    		return imap[i] >= key
    	})
    }
    
    type Language uint16
    
    // getLangID returns the langID of s if s is a canonical subtag
    // or langUnknown if s is not a canonical subtag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MapsTest.java

      public void testTransformEntriesGenerics() {
        Map<Object, Object> map1 = ImmutableMap.<Object, Object>of(1, 2);
        Map<Object, Number> map2 = ImmutableMap.<Object, Number>of(1, 2);
        Map<Object, Integer> map3 = ImmutableMap.<Object, Integer>of(1, 2);
        Map<Number, Object> map4 = ImmutableMap.<Number, Object>of(1, 2);
        Map<Number, Number> map5 = ImmutableMap.<Number, Number>of(1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. src/reflect/type.go

    		}
    	}
    
    	// Make a map type.
    	// Note: flag values must match those used in the TMAP case
    	// in ../cmd/compile/internal/reflectdata/reflect.go:writeType.
    	var imap any = (map[unsafe.Pointer]unsafe.Pointer)(nil)
    	mt := **(**mapType)(unsafe.Pointer(&imap))
    	mt.Str = resolveReflectName(newName(s, "", false, false))
    	mt.TFlag = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top