Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,066 for light (0.08 sec)

  1. pilot/pkg/networking/core/extension/wasmplugin.go

    	ConfigSourceSpecifier: &core.ConfigSource_Ads{
    		Ads: &core.AggregatedConfigSource{},
    	},
    	ResourceApiVersion: core.ApiVersion_V3,
    	// we block proxy init until WasmPlugins are loaded because they might be
    	// critical for security (e.g. authn/authz)
    	InitialFetchTimeout: &durationpb.Duration{Seconds: 0},
    }
    
    // PopAppendHTTP takes a list of filters and a set of WASM plugins, keyed by phase. It will remove all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/crypto/des/block.go

    	b := byteorder.BeUint64(src)
    	b = permuteInitialBlock(b)
    	left, right := uint32(b>>32), uint32(b)
    
    	left = (left << 1) | (left >> 31)
    	right = (right << 1) | (right >> 31)
    
    	if decrypt {
    		for i := 0; i < 8; i++ {
    			left, right = feistel(left, right, subkeys[15-2*i], subkeys[15-(2*i+1)])
    		}
    	} else {
    		for i := 0; i < 8; i++ {
    			left, right = feistel(left, right, subkeys[2*i], subkeys[2*i+1])
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    // nosplit because traceAcquire is nosplit.
    //
    //go:nosplit
    func lockRankMayTraceFlush() {
    	lockWithRankMayAcquire(&trace.lock, getLockRank(&trace.lock))
    }
    
    // traceBlockReason is an enumeration of reasons a goroutine might block.
    // This is the interface the rest of the runtime uses to tell the
    // tracer why a goroutine blocked. The tracer then propagates this information
    // into the trace however it sees fit.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. pkg/proxy/config/config_test.go

    		services = append(services, svc)
    	}
    	sort.Sort(sortedServices(services))
    	h.process(services)
    }
    
    func (h *ServiceHandlerMock) ValidateServices(t *testing.T, expectedServices []*v1.Service) {
    	// We might get 1 or more updates for N service updates, because we
    	// over write older snapshots of services from the producer go-routine
    	// if the consumer falls behind.
    	var services []*v1.Service
    	for {
    		select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/mergelocals_test.go

    	// a specific set of overlappings or frame offsets, this
    	// tests just verifies that there is a decent-sized clump of 4+ vars that
    	// get overlapped.
    	//
    	// The expected output blob we're interested might look like
    	// this (for amd64):
    	//
    	// =-= stack layout for ABC:
    	// 2: "p1" frameoff -8200 ...
    	// 3: "s" frameoff -8200 ...
    	// 4: "v2" frameoff -8200 ...
    	// 5: "v3" frameoff -8200 ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/strconv/makeisprint.go

    	except32 []uint32
    )
    
    func isPrint(r rune) bool {
    	// Same algorithm, either on uint16 or uint32 value.
    	// First, find first i such that rang[i] >= x.
    	// This is the index of either the start or end of a pair that might span x.
    	// The start is even (rang[i&^1]) and the end is odd (rang[i|1]).
    	// If we find x in a range, make sure x is not in exception list.
    
    	if 0 <= r && r < 1<<16 {
    		rr, rang, except := uint16(r), range16, except16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/legacytokentracking/controller.go

    	// this is useful in multi-apiserver cluster to prevent config existing in a
    	// cluster with mixed enabled/disabled controllers. otherwise, those
    	// apiservers will fight to create/delete until all apiservers are enabled
    	// or disabled.
    	creationRatelimiter *rate.Limiter
    	clock               clock.Clock
    }
    
    // NewController returns a Controller struct.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. internal/handlers/proxy.go

    		// specified in the Forwarded header. The first element will always be
    		// the 'for=', which we ignore, subsequently we proceed to look for
    		// 'proto=' which should precede right after `for=` if not
    		// we simply ignore the values and return empty. This is in line
    		// with the approach we took for returning first ip from multiple
    		// params.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/stmt.go

    					base.ErrorfAt(n.Pos(), errors.InvalidSelectCase, "select assignment must have receive on right hand side")
    					break
    				}
    				oselrecv2(n.X, n.Y, n.Def)
    
    			case ir.OAS2RECV:
    				n := n.(*ir.AssignListStmt)
    				if n.Rhs[0].Op() != ir.ORECV {
    					base.ErrorfAt(n.Pos(), errors.InvalidSelectCase, "select assignment must have receive on right hand side")
    					break
    				}
    				n.SetOp(ir.OSELRECV2)
    
    			case ir.ORECV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    // (in inlining) filename at p's position
    func (p *Prog) InnermostFilename() string {
    	// TODO For now, this is only used for debugging output, and if we need more/better information, it might change.
    	// An example of what we might want to see is the full stack of positions for inlined code, so we get some visibility into what is recorded there.
    	pos := p.Ctxt.InnermostPos(p.Pos)
    	if !pos.IsKnown() {
    		return "<unknown file name>"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top