Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 664 for map1 (0.04 sec)

  1. pilot/pkg/model/sidecar.go

    		Namespace:               configNamespace,
    		destinationRules:        make(map[host.Name][]*ConsolidatedDestRule),
    		destinationRulesByNames: make(map[types.NamespacedName]*config.Config),
    		servicesByHostname:      make(map[host.Name]*Service, len(services)),
    		Version:                 ps.PushVersion,
    	}
    
    	servicesAdded := make(map[host.Name]sidecarServiceIndex)
    	for _, s := range services {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    	}
    
    	// Provide Config.Info with all maps so that info recording is tested.
    	info := Info{
    		Types:        make(map[syntax.Expr]TypeAndValue),
    		Instances:    make(map[*syntax.Name]Instance),
    		Defs:         make(map[*syntax.Name]Object),
    		Uses:         make(map[*syntax.Name]Object),
    		Implicits:    make(map[syntax.Node]Object),
    		Selections:   make(map[*syntax.SelectorExpr]*Selection),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/deadstore.go

    func elimDeadAutosGeneric(f *Func) {
    	addr := make(map[*Value]*ir.Name) // values that the address of the auto reaches
    	elim := make(map[*Value]*ir.Name) // values that could be eliminated if the auto is
    	var used ir.NameSet               // used autos that must be kept
    
    	// visit the value and report whether any of the maps are updated
    	visit := func(v *Value) (changed bool) {
    		args := v.Args
    		switch v.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/runtime/tracemap.go

    			// append-only, either the map stays small because there isn't
    			// much activity, or the map gets big and races to insert on
    			// the same node are much less likely.
    			if newNode == nil {
    				newNode = tab.newTraceMapNode(data, size, hash, tab.seq.Add(1))
    			}
    			if m.CompareAndSwapNoWB(nil, unsafe.Pointer(newNode)) {
    				return newNode.id, true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

                LiteralValueResolved -> 456
                ContainerElementResolved -> element add(): MyNestedElement
                """.trimIndent()
            )
        }
    
        @Test
        fun `maps resolution errors to document errors`() {
            val resolver = tracingCodeResolver()
    
            val topLevelBlock = parseAsTopLevelBlock(
                """
                addAndConfigure("correct") { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/sym/symkind.go

    	SDWARFCONST
    	SDWARFFCN
    	SDWARFABSFCN
    	SDWARFTYPE
    	SDWARFVAR
    	SDWARFRANGE
    	SDWARFLOC
    	SDWARFLINES
    
    	// SEH symbol types
    	SSEHUNWINDINFO
    	SSEHSECT
    )
    
    // AbiSymKindToSymKind maps values read from object files (which are
    // of type cmd/internal/objabi.SymKind) to values of type SymKind.
    var AbiSymKindToSymKind = [...]SymKind{
    	objabi.Sxxx:                    Sxxx,
    	objabi.STEXT:                   STEXT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/client.go

    	kinds   map[config.GroupVersionKind]kclient.Untyped
    	kindsMu sync.RWMutex
    	queue   queue.Instance
    	// a flag indicates whether this client has been run, it is to prevent run queue twice
    	started *atomic.Bool
    
    	// handlers defines a list of event handlers per-type
    	handlers map[config.GroupVersionKind][]model.EventHandler
    
    	schemasByCRDName map[string]resource.Schema
    	client           kube.Client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			obj: map[string]interface{}{
    				"a": map[string]interface{}{
    					"b": 1,
    					"d": nil,
    				},
    				"a1": map[string]interface{}{
    					"b1": map[string]interface{}{
    						"c1": 4,
    					},
    				},
    				"a3": map[string]interface{}{},
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"a": objectType(map[string]schema.Structural{
    					"b": integerType,
    					"c": integerType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				{
    					Address: "us.google.com",
    					Ports:   map[string]uint32{"http-port": 7080, "http-alt-port": 18080},
    					Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    				},
    				{
    					Address: "uk.google.com",
    					Ports:   map[string]uint32{"http-port": 1080},
    					Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conditions.go

    }
    
    // setConditions sets the existingConditions with the new conditions
    func setConditions(generation int64, existingConditions []metav1.Condition, conditions map[string]*condition) []metav1.Condition {
    	// Sort keys for deterministic ordering
    	for _, k := range slices.Sort(maps.Keys(conditions)) {
    		cond := conditions[k]
    		setter := kstatus.UpdateConditionIfChanged
    		if cond.setOnce != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top