Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for someTar (0.27 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                return "cause=[Someday...]";
              }
            };
        AbstractFuture<Object> testFuture3 = new AbstractFuture<Object>() {};
        testFuture3.setFuture(testFuture2);
        assertThat(testFuture3.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, setFuture=\\[[^\\[]+\\[status=PENDING,"
                    + " info=\\[cause=\\[Someday...]]]]]");
        testFuture2.set("result string");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                return "cause=[Someday...]";
              }
            };
        AbstractFuture<Object> testFuture3 = new AbstractFuture<Object>() {};
        testFuture3.setFuture(testFuture2);
        assertThat(testFuture3.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, setFuture=\\[[^\\[]+\\[status=PENDING,"
                    + " info=\\[cause=\\[Someday...]]]]]");
        testFuture2.set("result string");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

            }
          }
          return insertInHashTable(e);
        }
    
        private SetBuilderImpl<E> insertInHashTable(E e) {
          requireNonNull(hashTable);
          int eHash = e.hashCode();
          int i0 = Hashing.smear(eHash);
          int mask = hashTable.length - 1;
          for (int i = i0; i - i0 < maxRunBeforeFallback; i++) {
            int index = i & mask;
            Object tableEntry = hashTable[index];
            if (tableEntry == null) {
    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/registry/core/pod/strategy_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test-pod",
    					Namespace:       "test-ns",
    					ResourceVersion: "1",
    					Annotations:     map[string]string{api.MirrorPodAnnotationKey: "someVal"},
    				},
    				Spec: api.PodSpec{
    					RestartPolicy: api.RestartPolicyAlways,
    					DNSPolicy:     api.DNSDefault,
    					Containers: []api.Container{
    						{
    							Name:                     "container",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. docs/pt/docs/async.md

    ## Corrotinas
    
    **Corrotina** é apenas um jeito bonitinho para a coisa que é retornada de uma função `async def`. O Python sabe que é uma função que pode começar e terminar em algum ponto, mas que pode ser pausada internamente também, sempre que tiver um `await` dentro dela.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

        exit 2
      fi
    
      # Install dependencies, some of these are already installed in the image but
      # that's fine since they won't re-install and we can reuse the code below
      # for another image someday.
      apt-get update
      apt-get install -y --no-install-recommends \
        apt-transport-https \
        ca-certificates \
        socat \
        curl \
        gnupg2 \
        software-properties-common \
        lsb-release
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. docs/pt/docs/deployment/docker.md

    Vamos revisar esses **conceitos de implantação** em termos de contêineres:
    
    * HTTPS
    * Executando na inicialização
    * Reinicializações
    * Replicação (número de processos rodando)
    * Memória
    * Passos anteriores antes de começar
    
    ## HTTPS
    
    Se nos concentrarmos apenas na **imagem do contêiner** para um aplicativo FastAPI (e posteriormente no **contêiner** em execução), o HTTPS normalmente seria tratado **externamente** por outra ferramenta.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
Back to top