Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 664 for map1 (0.17 sec)

  1. tests/integration/pilot/gateway_conformance_test.go

    				},
    				TimeoutConfig: ctx.Settings().GatewayConformanceTimeoutConfig,
    			}
    			if rev := ctx.Settings().Revisions.Default(); rev != "" {
    				opts.NamespaceLabels = map[string]string{
    					"istio.io/rev": rev,
    				}
    			} else {
    				opts.NamespaceLabels = map[string]string{
    					"istio-injection": "enabled",
    				}
    			}
    			ctx.Cleanup(func() {
    				if !ctx.Failed() {
    					return
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/go/types/check.go

    	// walked.
    	pkgPathMap map[string]map[string]bool
    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    	// maps and lists are allocated on demand)
    	files         []*ast.File               // package files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check.go

    	// walked.
    	pkgPathMap map[string]map[string]bool
    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    	// (initialized by Files, valid only for the duration of check.Files;
    	// maps and lists are allocated on demand)
    	files         []*syntax.File              // list of package files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/pod_cache.go

    	"errors"
    	"fmt"
    	"path/filepath"
    	"runtime"
    	"sync"
    
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/zdsapi"
    )
    
    var ErrPodNotFound = errors.New("netns not provided, but is needed as pod is not in cache")
    
    type PodNetnsCache interface {
    	ReadCurrentPodSnapshot() map[string]WorkloadInfo
    }
    
    // Hold a cache of node local pods with their netns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/environment/kube/settings.go

    	networkTopology map[clusterIndex]string
    
    	// configTopology maps each cluster to the cluster that runs it's config.
    	// If the cluster runs its own config, the cluster will map to itself (e.g. 0->0)
    	// By default, we use the controlPlaneTopology as the config topology.
    	configTopology clusterTopology
    }
    
    func (s *Settings) clone() *Settings {
    	c := *s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/internal/fmtsort/sort.go

    // SortedMap is a slice of KeyValue pairs that simplifies sorting
    // and iterating over map entries.
    //
    // Each KeyValue pair contains a map key and its corresponding value.
    type SortedMap []KeyValue
    
    // KeyValue holds a single key and value pair found in a map.
    type KeyValue struct {
    	Key, Value reflect.Value
    }
    
    // Sort accepts a map and returns a SortedMap that has the same keys and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    	wire    wireType
    }
    
    // typeInfoMap is an atomic pointer to map[reflect.Type]*typeInfo.
    // It's updated copy-on-write. Readers just do an atomic load
    // to get the current version of the map. Writers make a full copy of
    // the map and atomically update the pointer to point to the new map.
    // Under heavy read contention, this is significantly faster than a map
    // protected by a mutex.
    var typeInfoMap atomic.Value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	IgnoredFiles              []string
    	ImportMap                 map[string]string // maps import path to package path
    	PackageFile               map[string]string // maps package path to file of type information
    	Standard                  map[string]bool   // package belongs to standard library
    	PackageVetx               map[string]string // maps package path to file of fact information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/NativeDependencyCache.java

        public File getModuleMapFile(final ModuleMap moduleMap) {
            final String hash = moduleMap.getHashCode().toCompactString();
            return cache.useCache(() -> {
                File dir = new File(cache.getBaseDir(), "maps/" + hash + "/" + moduleMap.getModuleName());
                File moduleMapFile = new File(dir, "module.modulemap");
                if (!moduleMapFile.isFile()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

    	Description         string
    	OriginalObj         map[string]interface{}
    	ExpectedWithNull    map[string]interface{}
    	ExpectedWithoutNull map[string]interface{}
    }
    
    var filterNullTestCaseData = []byte(`
    testCases:
      - description: nil original
        originalObj: {}
        expectedWithNull: {}
        expectedWithoutNull: {}
      - description: simple map
        originalObj:
          nilKey: null
          nonNilKey: foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top