Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,126 for convex (0.15 sec)

  1. src/go/types/context.go

    // achieve such a guarantee.
    
    // A Context is an opaque type checking context. It may be used to share
    // identical type instances across type-checked packages or calls to
    // Instantiate. Contexts are safe for concurrent use.
    //
    // The use of a shared context does not guarantee that identical instances are
    // deduplicated in all cases.
    type Context struct {
    	mu        sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/ctrlz/fw/context.go

    func (c context) HTMLRouter() *mux.Router {
    	return c.htmlRouter
    }
    
    func (c context) JSONRouter() *mux.Router {
    	return c.jsonRouter
    }
    
    func (c context) Layout() *template.Template {
    	return c.layout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. internal/kms/context.go

    package kms
    
    import (
    	"bytes"
    	"sort"
    	"unicode/utf8"
    )
    
    // Context is a set of key-value pairs that
    // are associated with a generate data encryption
    // key (DEK).
    //
    // A KMS implementation may bind the context to the
    // generated DEK such that the same context must be
    // provided when decrypting an encrypted DEK.
    type Context map[string]string
    
    // MarshalText returns a canonical text representation of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. istioctl/pkg/cli/context.go

    import (
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/client-go/rest"
    
    	"istio.io/istio/istioctl/pkg/util/handlers"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/ptr"
    )
    
    type Context interface {
    	// CLIClient returns a client for the default revision
    	CLIClient() (kube.CLIClient, error)
    	// CLIClientWithRevision returns a client for the given revision
    	CLIClientWithRevision(rev string) (kube.CLIClient, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/warning/context.go

    }
    
    // WithWarningRecorder returns a new context that wraps the provided context and contains the provided Recorder implementation.
    // The returned context can be passed to AddWarning().
    func WithWarningRecorder(ctx context.Context, recorder Recorder) context.Context {
    	return context.WithValue(ctx, warningRecorderKey, recorder)
    }
    
    func warningRecorderFrom(ctx context.Context) (Recorder, bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 24 16:37:53 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/context.go

    		return
    	}
    	ae.Annotations[key] = value
    }
    
    // WithAuditContext returns a new context that stores the AuditContext.
    func WithAuditContext(parent context.Context) context.Context {
    	if AuditContextFrom(parent) != nil {
    		return parent // Avoid double registering.
    	}
    
    	return genericapirequest.WithValue(parent, auditKey, &AuditContext{})
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/fix/context.go

    )
    
    func init() {
    	register(contextFix)
    }
    
    var contextFix = fix{
    	name:     "context",
    	date:     "2016-09-09",
    	f:        ctxfix,
    	desc:     `Change imports of golang.org/x/net/context to context`,
    	disabled: false,
    }
    
    func ctxfix(f *ast.File) bool {
    	return rewriteImport(f, "golang.org/x/net/context", "context")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 19:04:54 UTC 2017
    - 510 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/context.go

    package cases
    
    import "golang.org/x/text/transform"
    
    // A context is used for iterating over source bytes, fetching case info and
    // writing to a destination buffer.
    //
    // Casing operations may need more than one rune of context to decide how a rune
    // should be cased. Casing implementations should call checkpoint on context
    // whenever it is known to be safe to return the runes processed so far.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/context.go

    )
    
    // IteratorFn is used to iterate over a set of collection entries. It must return true to keep iterating.
    type IteratorFn func(r *resource.Instance) bool
    
    // Context is an analysis context that is passed to individual analyzers.
    type Context interface {
    	// Report a diagnostic message
    	Report(c config.GroupVersionKind, t diag.Message)
    
    	// Find a resource in the collection. If not found, nil is returned
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. 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)
Back to top