Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for elegir (0.21 sec)

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

            final Iterator<Range<C>> rangeItr = ranges.iterator();
            Iterator<C> elemItr = Iterators.emptyIterator();
    
            @Override
            @CheckForNull
            protected C computeNext() {
              while (!elemItr.hasNext()) {
                if (rangeItr.hasNext()) {
                  elemItr = ContiguousSet.create(rangeItr.next(), domain).iterator();
                } else {
                  return endOfData();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 26.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

            final Iterator<Range<C>> rangeItr = ranges.iterator();
            Iterator<C> elemItr = Iterators.emptyIterator();
    
            @Override
            @CheckForNull
            protected C computeNext() {
              while (!elemItr.hasNext()) {
                if (rangeItr.hasNext()) {
                  elemItr = ContiguousSet.create(rangeItr.next(), domain).iterator();
                } else {
                  return endOfData();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ForwardingMapTest.java

            } catch (InvocationTargetException ex) {
              try {
                throw ex.getCause();
              } catch (UnsupportedOperationException unsupported) {
                // this is a legit exception
              }
            }
          } catch (Throwable cause) {
            throw new InvocationTargetException(cause, method + " with args: " + Arrays.toString(args));
          }
        }
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ForwardingMapTest.java

            } catch (InvocationTargetException ex) {
              try {
                throw ex.getCause();
              } catch (UnsupportedOperationException unsupported) {
                // this is a legit exception
              }
            }
          } catch (Throwable cause) {
            throw new InvocationTargetException(cause, method + " with args: " + Arrays.toString(args));
          }
        }
      }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  5. docs/tr/docs/tutorial/path-params.md

    ```Python hl_lines="6  11"
    {!../../../docs_src/path_params/tutorial003.py!}
    ```
    
    Aksi halde, `/users/{user_id}` yolu `"me"` değerinin `user_id` parametresi için gönderildiğini "düşünerek" `/users/me` ile de eşleşir.
    
    Benzer şekilde, bir yol operasyonunu yeniden tanımlamanız mümkün değildir:
    
    ```Python hl_lines="6  11"
    {!../../../docs_src/path_params/tutorial003b.py!}
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

                .getType());
      }
    
      private static TypeToken<Map<Object, Object>> mapType() {
        return new TypeToken<Map<Object, Object>>() {};
      }
    
      // Looks like recursive, but legit.
      private interface WithFalseRecursiveType<K, V> {
        WithFalseRecursiveType<List<V>, String> keyShouldNotResolveToStringList();
    
        WithFalseRecursiveType<List<K>, List<V>> shouldNotCauseInfiniteLoop();
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

                .getType());
      }
    
      private static TypeToken<Map<Object, Object>> mapType() {
        return new TypeToken<Map<Object, Object>>() {};
      }
    
      // Looks like recursive, but legit.
      private interface WithFalseRecursiveType<K, V> {
        WithFalseRecursiveType<List<V>, String> keyShouldNotResolveToStringList();
    
        WithFalseRecursiveType<List<K>, List<V>> shouldNotCauseInfiniteLoop();
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.5K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment.md

    Ele também tem integrações com Docker. Assim, você pode declarar seus domínios em cada configuração de aplicação e leitura dessas configurações, gerando os certificados HTTPS e servindo o HTTPS para sua aplicação automaticamente, sem exigir qualquer mudança em sua configuração.
    
    ---
    
    Com essas ferramentas e informações, continue com a próxima seção para combinar tudo.
    
    ## _Cluster_ de Docker Swarm Mode com Traefik e HTTPS
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Aug 18 16:16:54 GMT 2022
    - 16.8K bytes
    - Viewed (0)
  9. cni/pkg/iptables/iptables.go

    	// the healthcheck packet to a fixed IP if the packet is coming from a node-local process with a socket.
    	//
    	// We do this so we can exempt this traffic from ztunnel capture/proxy - otherwise both kube-proxy (legit)
    	// and kubelet (skippable) traffic would have the same srcip once they got to the pod, and would be indistinguishable.
    	//
    	// Note that SortedList is used here because the istio sets class has no order guarantees,
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 19.6K bytes
    - Viewed (0)
Back to top