Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pct_ (0.04 sec)

  1. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    			// If cluster ADD patch does not specify a patch context, only add for sidecar outbound and gateway.
    			if cp.Match.Context == networking.EnvoyFilter_ANY && pctx != networking.EnvoyFilter_SIDECAR_OUTBOUND &&
    				pctx != networking.EnvoyFilter_GATEWAY {
    				continue
    			}
    			if commonConditionMatch(pctx, cp) {
    				result = append(result, proto.Clone(cp.Value).(*cluster.Cluster))
    			}
    		}
    	}
    	return result
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/runtime/trace/annotation_test.go

    		for pb.Next() {
    			StartRegion(ctx, "region").End()
    		}
    	})
    }
    
    func BenchmarkNewTask(b *testing.B) {
    	b.ReportAllocs()
    	pctx, task := NewTask(context.Background(), "benchmark")
    	defer task.End()
    
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			_, task := NewTask(pctx, "task")
    			task.End()
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 721 bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    		inboundPatcher := clusterPatcher{efw: envoyFilterPatches, pctx: networking.EnvoyFilter_SIDECAR_INBOUND}
    		clusters = append(clusters, configgen.buildWaypointInboundClusters(cb, proxy, req.Push, wps.services)...)
    		clusters = append(clusters, inboundPatcher.insertedClusters()...)
    	default: // Gateways
    		patcher := clusterPatcher{efw: envoyFilterPatches, pctx: networking.EnvoyFilter_GATEWAY}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. src/cmd/go/main.go

    func init() {
    	base.Usage = mainUsage
    }
    
    func mainUsage() {
    	help.PrintUsage(os.Stderr, base.Go)
    	os.Exit(2)
    }
    
    func maybeStartTrace(pctx context.Context) context.Context {
    	if cfg.DebugTrace == "" {
    		return pctx
    	}
    
    	ctx, close, err := trace.Start(pctx, cfg.DebugTrace)
    	if err != nil {
    		base.Fatalf("failed to start trace: %v", err)
    	}
    	base.AtExit(func() {
    		if err := close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/cmd/trace/main.go

    	if parsed.err != nil {
    		log.Printf("Encountered error, but able to proceed. Error: %v", parsed.err)
    
    		lost := parsed.size - parsed.valid
    		pct := float64(lost) / float64(parsed.size) * 100
    		log.Printf("Lost %.2f%% of the latest trace data due to error (%s of %s)", pct, byteCount(lost), byteCount(parsed.size))
    	}
    
    	log.Print("Splitting trace for viewer...")
    	ranges, err := splitTrace(parsed)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/runtime/race.go

    }
    
    //go:nosplit
    func raceinit() (gctx, pctx uintptr) {
    	lockInit(&raceFiniLock, lockRankRaceFini)
    
    	// On most machines, cgo is required to initialize libc, which is used by race runtime.
    	if !iscgo && GOOS != "darwin" {
    		throw("raceinit: race build must use cgo")
    	}
    
    	racecall(&__tsan_init, uintptr(unsafe.Pointer(&gctx)), uintptr(unsafe.Pointer(&pctx)), abi.FuncPCABI0(racecallbackthunk), 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	'Q': true, 'R': true, 'S': true, 'T': true, 'U': true, 'V': true, 'W': true, 'X': true,
    	'Y': true, 'Z': true,
    
    	'!':  true, // sub-delims
    	'$':  true, // sub-delims
    	'%':  true, // pct-encoded (and used in IPv6 zones)
    	'&':  true, // sub-delims
    	'(':  true, // sub-delims
    	')':  true, // sub-delims
    	'*':  true, // sub-delims
    	'+':  true, // sub-delims
    	',':  true, // sub-delims
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/net/url/url.go

    // Section 3.2.1:
    //
    //	userinfo    = *( unreserved / pct-encoded / sub-delims / ":" )
    //	unreserved  = ALPHA / DIGIT / "-" / "." / "_" / "~"
    //	sub-delims  = "!" / "$" / "&" / "'" / "(" / ")"
    //	              / "*" / "+" / "," / ";" / "="
    //
    // It doesn't validate pct-encoded. The caller does that via func unescape.
    func validUserinfo(s string) bool {
    	for _, r := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/util.go

    		return ""
    	}
    	return fmt.Sprintf("<%s>", a.Sym.ABI())
    }
    
    // AlignmentPadding bytes to add to align code as requested.
    // Alignment is restricted to powers of 2 between 8 and 2048 inclusive.
    //
    // pc_: current offset in function, in bytes
    // p:  a PCALIGN or PCALIGNMAX prog
    // ctxt: the context, for current function
    // cursym: current function being assembled
    // returns number of bytes of padding needed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    						}
    						splitPerHost := map[echo.NamespacedName]int{}
    						destNames := dests.NamespacedNames()
    						for i, pct := range split {
    							splitPerHost[destNames[i]] = pct
    						}
    						for serviceName, exp := range splitPerHost {
    							hostResponses := result.Responses.Match(func(r echoClient.Response) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top