Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pct_ (0.03 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. src/runtime/trace/annotation.go

    //	    defer task.End()
    //	    trace.WithRegion(ctx, "remainingWork", remainingWork)
    //	}()
    func NewTask(pctx context.Context, taskType string) (ctx context.Context, task *Task) {
    	pid := fromContext(pctx).id
    	id := newID()
    	userTaskCreate(id, pid, taskType)
    	s := &Task{id: id}
    	return context.WithValue(pctx, traceContextKey{}, s), s
    
    	// We allocate a new task even when
    	// the tracing is disabled because the context and task
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. 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)
Back to top