Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 897 for map1 (0.86 sec)

  1. pkg/config/analysis/analyzers/util/proxyconfig.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    type EffectiveProxyConfigResolver struct {
    	meshConfig    *meshconfig.MeshConfig
    	rootNamespace string
    	root          *v1beta1.ProxyConfig
    	namespace     map[string]*v1beta1.ProxyConfig
    	workload      map[string]*v1beta1.ProxyConfig
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 21:07:52 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/val.go

    	}
    	// unstructured maps, as seen in annotations
    	// map keys must be strings
    	if mapOfVal, ok := value.Value().(map[ref.Val]ref.Val); ok {
    		result := make(map[string]any)
    		for k, v := range mapOfVal {
    			stringKey, ok := k.Value().(string)
    			if !ok {
    				return nil, fmt.Errorf("map key %q is of type %t, not string", k, k)
    			}
    			result[stringKey] = v.Value()
    		}
    		return result, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 21:55:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasher.java

            Map<String, String> entries = Maps.fromProperties(properties);
            entries
                .entrySet()
                .stream()
                .filter(entry ->
                    !propertyResourceFilter.shouldBeIgnored(entry.getKey()))
                .sorted(Map.Entry.comparingByKey())
                .forEach(entry -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/connections.go

    type adsConnections struct {
    	sync.Mutex
    
    	// keyed by proxy id, then connection id
    	byProxy map[proxyKey]map[string]connection
    }
    
    func newAdsConnections() *adsConnections {
    	return &adsConnections{byProxy: map[proxyKey]map[string]connection{}}
    }
    
    func (m *adsConnections) ConnectionsForGroup(wg types.NamespacedName) []connection {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/SetMultimapAsMapTester.java

        }
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testEquals() {
        resetContainer(
            Helpers.mapEntry(k0(), v0()), Helpers.mapEntry(k1(), v0()), Helpers.mapEntry(k0(), v3()));
        Map<K, Collection<V>> expected = Maps.newHashMap();
        expected.put(k0(), Sets.newHashSet(v0(), v3()));
        expected.put(k1(), Sets.newHashSet(v0()));
        new EqualsTester().addEqualityGroup(expected, multimap().asMap()).testEquals();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/CandidateMethods.java

    import java.lang.reflect.Method;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Map;
    
    public class CandidateMethods {
    
        private final Map<String, Map<Equivalence.Wrapper<Method>, Collection<Method>>> candidates;
    
        public CandidateMethods(Map<String, Map<Equivalence.Wrapper<Method>, Collection<Method>>> candidates) {
            this.candidates = candidates;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/types.go

    }
    
    // signalObservations maps a signal to an observed quantity
    type signalObservations map[evictionapi.Signal]signalObservation
    
    // thresholdsObservedAt maps a threshold to a time that it was observed
    type thresholdsObservedAt map[evictionapi.Threshold]time.Time
    
    // nodeConditionsObservedAt maps a node condition to a time that it was observed
    type nodeConditionsObservedAt map[v1.NodeConditionType]time.Time
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

        private static final String COLOR_DIVIDER = "-";
    
        /**
         * Maps a {@link StyledTextOutput.Style} to the default color spec (that can be overridden by system properties)
         */
        private final Map<String, String> defaults = new HashMap<String, String>();
    
        /**
         * Maps a {@link StyledTextOutput.Style} to the {@link org.gradle.internal.logging.console.ColorMap.Color} that has been created for it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ComponentMetadataDetailsAdapter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.repositories.resolver;
    
    import org.apache.groovy.util.Maps;
    import org.gradle.api.Action;
    import org.gradle.api.InvalidUserCodeException;
    import org.gradle.api.artifacts.ComponentMetadataDetails;
    import org.gradle.api.artifacts.DependencyConstraintMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/go/doc/comment/std.go

    	"bufio",
    	"bytes",
    	"cmp",
    	"context",
    	"crypto",
    	"embed",
    	"encoding",
    	"errors",
    	"expvar",
    	"flag",
    	"fmt",
    	"hash",
    	"html",
    	"image",
    	"io",
    	"iter",
    	"log",
    	"maps",
    	"math",
    	"mime",
    	"net",
    	"os",
    	"path",
    	"plugin",
    	"reflect",
    	"regexp",
    	"runtime",
    	"slices",
    	"sort",
    	"strconv",
    	"strings",
    	"structs",
    	"sync",
    	"syscall",
    	"testing",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 671 bytes
    - Viewed (0)
Back to top