Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for stks (0.05 sec)

  1. pkg/bootstrap/option/instances_test.go

    			option:   option.EnvoyStatsMatcherInclusionRegexp([]string{"fake"}),
    			expected: []string{"fake"},
    		},
    		{
    			testName: "sts enabled",
    			key:      "sts",
    			option:   option.STSEnabled(true),
    			expected: true,
    		},
    		{
    			testName: "sts port",
    			key:      "sts_port",
    			option:   option.STSPort(5555),
    			expected: 5555,
    		},
    		{
    			testName: "project id",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            - --log_output_level
            - {{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level | quote}}
          {{- if .Values.global.sts.servicePort }}
            - --stsPort={{ .Values.global.sts.servicePort }}
          {{- end }}
          {{- if .Values.global.logAsJson }}
            - --log_as_json
          {{- end }}
          {{- if .Values.global.proxy.lifecycle }}
            lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    	NoNodeAvailableMsg = "0/%v nodes are available"
    )
    
    func (d *Diagnosis) AddPluginStatus(sts *Status) {
    	if sts.Plugin() == "" {
    		return
    	}
    	if sts.IsRejected() {
    		if d.UnschedulablePlugins == nil {
    			d.UnschedulablePlugins = sets.New[string]()
    		}
    		d.UnschedulablePlugins.Insert(sts.Plugin())
    	}
    	if sts.Code() == Pending {
    		if d.PendingPlugins == nil {
    			d.PendingPlugins = sets.New[string]()
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. src/internal/trace/testtrace/validation.go

    		s = &schedContext{M: m, P: trace.NoProc, G: trace.NoGoroutine}
    		v.ms[m] = s
    		return s
    	}
    	return s
    }
    
    func checkStack(e *errAccumulator, stk trace.Stack) {
    	// Check for non-empty values, but we also check for crashes due to incorrect validation.
    	i := 0
    	stk.Frames(func(f trace.StackFrame) bool {
    		if i == 0 {
    			// Allow for one fully zero stack.
    			//
    			// TODO(mknyszek): Investigate why that happens.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/builtin.go

    	s := nn.Args
    	t := make([]ir.Node, 0, len(s))
    	for i := 0; i < len(s); {
    		var strs []string
    		for i < len(s) && ir.IsConst(s[i], constant.String) {
    			strs = append(strs, ir.StringVal(s[i]))
    			i++
    		}
    		if len(strs) > 0 {
    			t = append(t, ir.NewString(base.Pos, strings.Join(strs, "")))
    		}
    		if i < len(s) {
    			t = append(t, s[i])
    			i++
    		}
    	}
    	nn.Args = t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one.go

    			logger.Error(forgetErr, "Scheduler cache ForgetPod failed")
    		}
    
    		if sts.IsRejected() {
    			fitErr := &framework.FitError{
    				NumAllNodes: 1,
    				Pod:         pod,
    				Diagnosis: framework.Diagnosis{
    					NodeToStatusMap: framework.NodeToStatusMap{scheduleResult.SuggestedHost: sts},
    				},
    			}
    			fitErr.Diagnosis.AddPluginStatus(sts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. src/internal/trace/generation.go

    func validateStackStrings(
    	stacks *dataTable[stackID, stack],
    	strings *dataTable[stringID, string],
    	frames map[uint64]frame,
    ) error {
    	var err error
    	stacks.forEach(func(id stackID, stk stack) bool {
    		for _, pc := range stk.pcs {
    			frame, ok := frames[pc]
    			if !ok {
    				err = fmt.Errorf("found unknown pc %x for stack %d", pc, id)
    				return false
    			}
    			_, ok = strings.get(frame.funcID)
    			if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/internal/trace/event.go

    				return true
    			})
    		}
    	case EventExperimental:
    		r := e.Experimental()
    		fmt.Fprintf(&sb, " Name=%s ArgNames=%v Args=%v", r.Name, r.ArgNames, r.Args)
    	}
    	if stk := e.Stack(); stk != NoStack {
    		fmt.Fprintln(&sb)
    		fmt.Fprintln(&sb, "Stack=")
    		stk.Frames(func(f StackFrame) bool {
    			fmt.Fprintf(&sb, "\t%s @ 0x%x\n", f.Func, f.PC)
    			fmt.Fprintf(&sb, "\t\t%s:%d\n", f.File, f.Line)
    			return true
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/cmd.go

    			"PROXY_CONFIG environment variable or proxy.istio.io/config annotation.")
    	proxyCmd.PersistentFlags().IntVar(&proxyArgs.StsPort, "stsPort", 0,
    		"HTTP Port on which to serve Security Token Service (STS). If zero, STS service will not be provided.")
    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.TokenManagerPlugin, "tokenManagerPlugin", "",
    		"Token provider specific plugin name.")
    	// DEPRECATED. Flags for proxy configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}
      {{- if .Values.global.sts.servicePort }}
        - --stsPort={{ .Values.global.sts.servicePort }}
      {{- end }}
      {{- if .Values.global.logAsJson }}
        - --log_as_json
      {{- end }}
        lifecycle:
          postStart:
            exec:
              command:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top