Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,370 for context0 (0.26 sec)

  1. pkg/kube/client_config.go

    		Clusters: map[string]*api.Cluster{
    			clusterName: newCluster(&c.restConfig),
    		},
    		AuthInfos: map[string]*api.AuthInfo{
    			authInfoName: newAuthInfo(&c.restConfig),
    		},
    		Contexts: map[string]*api.Context{
    			contextName: {
    				Cluster:  clusterName,
    				AuthInfo: authInfoName,
    			},
    		},
    		CurrentContext: contextName,
    	}
    
    	return cfg, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 17 16:52:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/context.go

    // this was not an explicit design goal of the context type. In fact, due to
    // concurrent use it is convenient not to guarantee de-duplication.
    //
    // Nevertheless, in the future it could be helpful to allow users to leverage
    // contexts to canonicalize instances, and it would probably be possible to
    // achieve such a guarantee.
    
    // A Context is an opaque type checking context. It may be used to share
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/go/types/context.go

    // this was not an explicit design goal of the context type. In fact, due to
    // concurrent use it is convenient not to guarantee de-duplication.
    //
    // Nevertheless, in the future it could be helpful to allow users to leverage
    // contexts to canonicalize instances, and it would probably be possible to
    // achieve such a guarantee.
    
    // A Context is an opaque type checking context. It may be used to share
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/context/context.go

    	//
    	// 	// userKey is the key for user.User values in Contexts. It is
    	// 	// unexported; clients use user.NewContext and user.FromContext
    	// 	// instead of using this key directly.
    	// 	var userKey key
    	//
    	// 	// NewContext returns a new Context that carries value u.
    	// 	func NewContext(ctx context.Context, u *User) context.Context {
    	// 		return context.WithValue(ctx, userKey, u)
    	// 	}
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/testing/fixtures/context.go

    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    // Context is a test fixture of analysis.Context
    type Context struct {
    	Resources []*resource.Instance
    	Reports   []diag.Message
    }
    
    var _ analysis.Context = &Context{}
    
    // Report implements analysis.Context
    func (ctx *Context) Report(_ config.GroupVersionKind, t diag.Message) {
    	ctx.Reports = append(ctx.Reports, t)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/html/template/context.go

    	"fmt"
    	"text/template/parse"
    )
    
    // context describes the state an HTML parser must be in when it reaches the
    // portion of HTML produced by evaluating a particular template node.
    //
    // The zero value of type context is the start context for a template that
    // produces an HTML fragment as defined at
    // https://www.w3.org/TR/html5/syntax.html#the-end
    // where the context element is null.
    type context struct {
    	state   state
    	delim   delim
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/context.go

    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    // Context is the core context interface that is used by resources.
    type Context interface {
    	yml.FileWriter
    
    	// TrackResource tracks a resource in this context. If the context is closed, then the resource will be
    	// cleaned up.
    	TrackResource(r Resource) ID
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/list/context.go

    	InstallSuffix string   `json:",omitempty"` // suffix to use in the name of the install dir
    }
    
    func newContext(c *build.Context) *Context {
    	return &Context{
    		GOARCH:        c.GOARCH,
    		GOOS:          c.GOOS,
    		GOROOT:        c.GOROOT,
    		GOPATH:        c.GOPATH,
    		CgoEnabled:    c.CgoEnabled,
    		UseAllFiles:   c.UseAllFiles,
    		Compiler:      c.Compiler,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 21:56:16 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/request/context.go

    func NewContext() context.Context {
    	return context.TODO()
    }
    
    // NewDefaultContext instantiates a base context object for request flows in the default namespace
    func NewDefaultContext() context.Context {
    	return WithNamespace(NewContext(), metav1.NamespaceDefault)
    }
    
    // WithValue returns a copy of parent in which the value associated with key is val.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 23 14:08:44 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/content/content.go

    func GetClusterInfo(p *Params) (map[string]string, error) {
    	out, err := p.Runner.RunCmd("config current-context", "", p.KubeConfig, p.KubeContext, p.DryRun)
    	if err != nil {
    		return nil, err
    	}
    	ret := make(map[string]string)
    	// Add the endpoint to the context
    	ret["cluster-context"] = out + p.Runner.Client.RESTConfig().Host + "\n"
    	out, err = p.Runner.RunCmd("version", "", p.KubeConfig, p.KubeContext, p.DryRun)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top