Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 196 for stks (0.04 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/cmd/compile/internal/ssa/debug.go

    	return s.stateString(endState)
    }
    
    func (s *debugState) stateString(state stateAtPC) string {
    	var strs []string
    	for slotID, loc := range state.slots {
    		if !loc.absent() {
    			strs = append(strs, fmt.Sprintf("\t%v = %v\n", s.slots[slotID], s.LocString(loc)))
    		}
    	}
    
    	strs = append(strs, "\n")
    	for reg, slots := range state.registers {
    		if len(slots) != 0 {
    			var slotStrs []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.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 }}
          {{- if .Values.global.proxy.outlierLogPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello-probes.yaml.18.template.gen.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 }}
          {{- if .Values.global.proxy.outlierLogPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.template.gen.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 }}
          {{- if .Values.global.proxy.outlierLogPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top