Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,266 for maxs (0.04 sec)

  1. docs/pt/docs/tutorial/static-files.md

    Todos esses parâmetros podem ser diferentes de "`static`", ajuste-os de acordo com as necessidades e detalhes específicos de sua própria aplicação.
    
    ## Mais informações
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 07 13:09:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. docs/fr/docs/async.md

    #### Burgers parallèles
    
    Imaginons désormais que ce ne sont pas des "burgers concurrents" mais des "burgers parallèles".
    
    Vous allez avec votre crush 😍 dans un fast food 🍔 parallélisé.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/TreeMultimapExplicitTest.java

            .containsExactly(
                Maps.<@Nullable String, Integer>immutableEntry(null, 7),
                Maps.<@Nullable String, Integer>immutableEntry(null, 3),
                Maps.<@Nullable String, Integer>immutableEntry(null, 1),
                Maps.<String, @Nullable Integer>immutableEntry("tree", null),
                Maps.immutableEntry("tree", 0),
                Maps.immutableEntry("google", 6),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

            ImmutableList.of(
                Maps.immutableEntry("foo", 99),
                Maps.immutableEntry("foo", 88),
                Maps.immutableEntry("bar", 77));
    
        for (final int startIndex : new int[] {0, 3, 5}) {
          List<Entry<String, Integer>> list =
              Lists.newArrayList(
                  Maps.immutableEntry("foo", 2),
                  Maps.immutableEntry("foo", 3),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

        myapp: ratings-myapp
      name: ratings
      namespace: default
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: maps-correctly-no-conflicts
      namespace: default
    spec:
      selector:
        matchLabels:
          app: productpage # Maps to an existing workload without conflicts in the same ns, no error
      metrics:
        - providers:
            - name: prometheus
          overrides:
            - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/SparseImmutableTable.java

          ImmutableSet<R> rowSpace,
          ImmutableSet<C> columnSpace) {
        Map<R, Integer> rowIndex = Maps.indexMap(rowSpace);
        Map<R, Map<C, V>> rows = Maps.newLinkedHashMap();
        for (R row : rowSpace) {
          rows.put(row, new LinkedHashMap<C, V>());
        }
        Map<C, Map<R, V>> columns = Maps.newLinkedHashMap();
        for (C col : columnSpace) {
          columns.put(col, new LinkedHashMap<R, V>());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    func FormatLabels(labelMap map[string]string) string {
    	l := Set(labelMap).String()
    	if l == "" {
    		l = "<none>"
    	}
    	return l
    }
    
    // Conflicts takes 2 maps and returns true if there a key match between
    // the maps but the value doesn't match, and returns false in other cases
    func Conflicts(labels1, labels2 Set) bool {
    	small := labels1
    	big := labels2
    	if len(labels2) < len(labels1) {
    		small = labels2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/response-directly.md

        **FastAPI** fournit le même objet `starlette.responses` que `fastapi.responses` juste par commodité pour le développeur. Mais la plupart des réponses disponibles proviennent directement de Starlette.
    
    ## Renvoyer une `Response` personnalisée
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/StandardTable.java

            return obj != null && removeFromColumnIf(Maps.<V>valuePredicateOnEntries(equalTo(obj)));
          }
    
          @Override
          public boolean removeAll(final Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(in(c)));
          }
    
          @Override
          public boolean retainAll(final Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(not(in(c))));
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/FunctionsTest.java

      public void testComposition() {
        Map<String, Integer> mJapaneseToInteger = Maps.newHashMap();
        mJapaneseToInteger.put("Ichi", 1);
        mJapaneseToInteger.put("Ni", 2);
        mJapaneseToInteger.put("San", 3);
        Function<String, Integer> japaneseToInteger = Functions.forMap(mJapaneseToInteger);
    
        Map<Integer, String> mIntegerToSpanish = Maps.newHashMap();
        mIntegerToSpanish.put(1, "Uno");
        mIntegerToSpanish.put(3, "Tres");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top