Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 8,993 for e$ (0.04 sec)

  1. src/sync/map.go

    	read := m.loadReadOnly()
    	if e, ok := read.m[key]; ok {
    		actual, loaded, ok := e.tryLoadOrStore(value)
    		if ok {
    			return actual, loaded
    		}
    	}
    
    	m.mu.Lock()
    	read = m.loadReadOnly()
    	if e, ok := read.m[key]; ok {
    		if e.unexpungeLocked() {
    			m.dirty[key] = e
    		}
    		actual, loaded, _ = e.tryLoadOrStore(value)
    	} else if e, ok := m.dirty[key]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RegularImmutableAsList.java

    @ElementTypesAreNonnullByDefault
    class RegularImmutableAsList<E> extends ImmutableAsList<E> {
      private final ImmutableCollection<E> delegate;
      private final ImmutableList<? extends E> delegateList;
    
      RegularImmutableAsList(ImmutableCollection<E> delegate, ImmutableList<? extends E> delegateList) {
        this.delegate = delegate;
        this.delegateList = delegateList;
      }
    
      RegularImmutableAsList(ImmutableCollection<E> delegate, Object[] array) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

       */
      @SafeVarargs // For Eclipse. For internal javac we have disabled this pointless type of warning.
      public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) {
        checkArgument(
            others.length <= Integer.MAX_VALUE - 6, "the total number of elements must fit in an int");
        SetBuilderImpl<E> builder = new RegularSetBuilderImpl<>(6 + others.length);
        builder = builder.add(e1).add(e2).add(e3).add(e4).add(e5).add(e6);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. pkg/test/echo/server/forwarder/instance.go

    	h := add(newHTTPProtocol(e))
    	protocolMap[scheme.HTTP] = h
    	protocolMap[scheme.HTTPS] = h
    	protocolMap[scheme.DNS] = add(newDNSProtocol(e))
    	protocolMap[scheme.GRPC] = add(newGRPCProtocol(e))
    	protocolMap[scheme.WebSocket] = add(newWebsocketProtocol(e))
    	protocolMap[scheme.TLS] = add(newTLSProtocol(e))
    	protocolMap[scheme.XDS] = add(newXDSProtocol(e))
    	protocolMap[scheme.TCP] = add(newTCPProtocol(e))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/crypto/elliptic/p224_test.go

    	p224 := P224()
    	for i, e := range p224BaseMultTests {
    		k, ok := new(big.Int).SetString(e.k, 10)
    		if !ok {
    			t.Errorf("%d: bad value for k: %s", i, e.k)
    		}
    		x, y := p224.ScalarBaseMult(k.Bytes())
    		if fmt.Sprintf("%x", x) != e.x || fmt.Sprintf("%x", y) != e.y {
    			t.Errorf("%d: bad output for k=%s: got (%x, %x), want (%s, %s)", i, e.k, x, y, e.x, e.y)
    		}
    		if testing.Short() && i > 5 {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 19:01:13 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/extractor/xml/test_utf16bebom.xml

    ��<address xmlns:hoge="http://www.example.com/hoge">
            <item sex="male" custid="A12345">
                    <name>�4g(Y*��</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/extractor/xml/test_utf16lebom.xml

    ��<address xmlns:hoge="http://www.example.com/hoge">
            <item sex="male" custid="A12345">
                    <name>4�(g*Yΐ</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue9370.go

    type C int
    
    func (C) Method() {}
    
    type G func()
    
    func (G) Method() {}
    
    var (
    	e interface{}
    	i I
    	c C
    	n int
    	f func()
    	g G
    )
    
    var (
    	_ = e == c
    	_ = e != c
    	_ = e >= c // ERROR "invalid operation.*not defined|invalid comparison|cannot compare"
    	_ = c == e
    	_ = c != e
    	_ = c >= e // ERROR "invalid operation.*not defined|invalid comparison|cannot compare"
    
    	_ = i == c
    	_ = i != c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/net/UrlEscapersTest.java

        assertUnescaped(e, '0');
        assertUnescaped(e, '9');
    
        // Unreserved characters used in java.net.URLEncoder
        assertUnescaped(e, '-');
        assertUnescaped(e, '_');
        assertUnescaped(e, '.');
        assertUnescaped(e, '*');
    
        assertEscaping(e, "%00", '\u0000'); // nul
        assertEscaping(e, "%7F", '\u007f'); // del
        assertEscaping(e, "%C2%80", '\u0080'); // xx-00010,x-000000
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

      }
    
      public SafeTreeSet(Collection<? extends E> collection) {
        this(new TreeSet<E>(collection));
      }
    
      public SafeTreeSet(Comparator<? super E> comparator) {
        this(new TreeSet<E>(comparator));
      }
    
      public SafeTreeSet(SortedSet<E> set) {
        this(new TreeSet<E>(set));
      }
    
      private SafeTreeSet(NavigableSet<E> delegate) {
        this.delegate = delegate;
        for (E e : this) {
          checkValid(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top