Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for updateContexts (0.23 sec)

  1. src/cmd/compile/internal/types2/instantiate.go

    	}
    
    	// Record the result in all contexts.
    	// Prefer to re-use existing types from expanding context, if it exists, to reduce
    	// the memory pinned by the Named type.
    	updateContexts := func(res Type) Type {
    		for i := len(ctxts) - 1; i >= 0; i-- {
    			res = ctxts[i].update(hashes[i], orig, targs, res)
    		}
    		return res
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/go/types/instantiate.go

    	}
    
    	// Record the result in all contexts.
    	// Prefer to re-use existing types from expanding context, if it exists, to reduce
    	// the memory pinned by the Named type.
    	updateContexts := func(res Type) Type {
    		for i := len(ctxts) - 1; i >= 0; i-- {
    			res = ctxts[i].update(hashes[i], orig, targs, res)
    		}
    		return res
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pkg/registry/rbac/clusterrole/policybased/storage_test.go

    		IsResourceRequest: true,
    		Verb:              "create",
    		APIGroup:          "rbac.authorization.k8s.io",
    		APIVersion:        "v1",
    		Resource:          "clusterroles",
    		Name:              "",
    	})
    	updateContext := request.WithRequestInfo(request.WithNamespace(context.TODO(), ""), &request.RequestInfo{
    		IsResourceRequest: true,
    		Verb:              "update",
    		APIGroup:          "rbac.authorization.k8s.io",
    		APIVersion:        "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 13:47:19 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. pkg/registry/rbac/role/policybased/storage_test.go

    		Verb:              "create",
    		APIGroup:          "rbac.authorization.k8s.io",
    		APIVersion:        "v1",
    		Namespace:         "myns",
    		Resource:          "roles",
    		Name:              "",
    	})
    	updateContext := request.WithRequestInfo(request.WithNamespace(context.TODO(), "myns"), &request.RequestInfo{
    		IsResourceRequest: true,
    		Verb:              "update",
    		APIGroup:          "rbac.authorization.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 13:47:19 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    	if pushReq == nil || oldPushContext == nil || !oldPushContext.InitDone.Load() || len(pushReq.ConfigsUpdated) == 0 {
    		if err := ps.createNewContext(env); err != nil {
    			return err
    		}
    	} else {
    		if err := ps.updateContext(env, oldPushContext, pushReq); err != nil {
    			return err
    		}
    	}
    
    	ps.networkMgr = env.NetworkManager
    
    	ps.clusterLocalHosts = env.ClusterLocal().GetClusterLocalHosts()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    		ConfigsUpdated: sets.Set[ConfigKey]{
    			{Kind: kind.Service, Name: svcName, Namespace: "foo"}: {},
    		},
    		Reason: nil,
    		Full:   true,
    	}); err != nil {
    		t.Fatal(err)
    	}
    	when = "updateContext(with no changes)"
    	verifyServices(true, fmt.Sprintf(testDesc, otherNS, when), otherNS, newPush)
    	verifyServices(true, fmt.Sprintf(testDesc, defaultNS, when), defaultNS, newPush)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    ;},get requiresTallView(){return true;},set modelEvent(obj){this.objectSnapshot=obj;},get modelEvent(){return this.objectSnapshot;},get objectSnapshot(){return this.objectSnapshot_;},set objectSnapshot(i){this.objectSnapshot_=i;this.updateContents();},updateContents(){throw new Error('Not implemented');}};const options=new tr.b.ExtensionRegistryOptions(tr.b.TYPE_BASED_REGISTRY_MODE);options.mandatoryBaseClass=ObjectSnapshotView;options.defaultMetadata={showInstances:true,showInTrackView:true};tr...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top