Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,976 for CONTEXT (0.24 sec)

  1. pilot/pkg/model/context.go

    		return e.NetworksWatcher.Networks()
    	}
    	return nil
    }
    
    // SetPushContext sets the push context with lock protected
    func (e *Environment) SetPushContext(pc *PushContext) {
    	e.mutex.Lock()
    	defer e.mutex.Unlock()
    	e.pushContext = pc
    }
    
    // PushContext returns the push context with lock protected
    func (e *Environment) PushContext() *PushContext {
    	e.mutex.RLock()
    	defer e.mutex.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. tests/integration/security/util/reachability/context.go

    	VMSvc            = "vm"
    	HeadlessSvc      = "headless"
    	NakedSvc         = "naked"
    	HeadlessNakedSvc = "headless-naked"
    	ExternalSvc      = "external"
    )
    
    // Run runs the given reachability test cases with the context.
    func Run(testCases []TestCase, t framework.TestContext) {
    	callOptions := []echo.CallOptions{
    		{
    			Port: echo.Port{
    				Name: "http",
    			},
    			Scheme: scheme.HTTP,
    		},
    		{
    			Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/context.go

    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // GatewayContext contains a minimal subset of push context functionality to be exposed to GatewayAPIControllers
    type GatewayContext struct {
    	ps      *model.PushContext
    	cluster cluster.ID
    }
    
    func NewGatewayContext(ps *model.PushContext, cluster cluster.ID) GatewayContext {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/testData/sessionBuilder/nonPhysicalFile/context.kt

    Yan Zhulanow <******@****.***> 1710406416 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 13 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/context.h

    Dan Suh <******@****.***> 1704988236 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 11 16:08:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top