Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 551 for maxs (0.19 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-correctly-no-conflicts
      namespace: default
    spec:
      workloadSelector:
        labels:
          app: productpage # Maps to an existing workload without conflicts in the same ns, no error
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-to-nonexistent
      namespace: default
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. pkg/config/resource/metadata.go

    }
    
    // Clone Metadata. Warning, this is expensive!
    func (m *Metadata) Clone() Metadata {
    	result := *m
    	result.Annotations = maps.Clone(m.Annotations)
    	result.Labels = maps.Clone(m.Labels)
    	return result
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 26 13:19:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. src/cmd/go/internal/test/flagdefs_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package test
    
    import (
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/test/internal/genflags"
    	"internal/testenv"
    	"maps"
    	"os"
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	cfg.SetGOROOT(testenv.GOROOT(nil), false)
    	os.Exit(m.Run())
    }
    
    func TestPassFlagToTest(t *testing.T) {
    	wantNames := genflags.ShortTestFlags()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 09 13:37:58 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/scala/BaseScalaOptionTest.groovy

        abstract List<Map<String, String>> stringProperties()
    
        abstract List<Map<String, String>> onOffProperties()
    
        abstract List<Map<String, String>> listProperties()
    
        def "String #fixture.fieldName maps to #fixture.antProperty with a default value of #fixture.defaultValue"(Map<String, String> fixture) {
            given:
            assert testObject."${fixture.fieldName}" == fixture.defaultValue
            if (fixture.defaultValue == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top