Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for grpcstatus (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		defer cleanupAction()
    	}
    	if err != nil {
    		s, _ := grpcstatus.FromError(err)
    		m.recordContainerEvent(pod, container, "", v1.EventTypeWarning, events.FailedToCreateContainer, "Error: %v", s.Message())
    		return s.Message(), ErrCreateContainerConfig
    	}
    
    	err = m.internalLifecycle.PreCreateContainer(pod, container, containerConfig)
    	if err != nil {
    		s, _ := grpcstatus.FromError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    			// the validation webhook would have already caught the invalid
    			// code and we wouldn't reach here.
    			out.Abort.ErrorType = &xdshttpfault.FaultAbort_GrpcStatus{
    				GrpcStatus: uint32(grpc.SupportedGRPCStatus[a.GrpcStatus]),
    			}
    		default:
    			log.Warnf("Only HTTP and gRPC type abort faults are supported")
    			out.Abort = nil
    		}
    	}
    
    	if out.Delay == nil && out.Abort == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/testdata/config_dump.json

                            "http_filters": [
                              {
                                "name": "envoy.filters.http.grpc_stats",
                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.filters.http.grpc_stats.v3.FilterConfig",
                                  "emit_filter_state": true,
                                  "stats_for_all_methods": false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump.json

                            "http_filters": [
                              {
                                "name": "envoy.filters.http.grpc_stats",
                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.filters.http.grpc_stats.v3.FilterConfig",
                                  "emit_filter_state": true,
                                  "stats_for_all_methods": false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                            "http_filters": [
                              {
                                "name": "envoy.filters.http.grpc_stats",
                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.filters.http.grpc_stats.v3.FilterConfig",
                                  "emit_filter_state": true,
                                  "stats_for_all_methods": false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	level, _, _ := gotraceback()
    
    	gpstatus := readgstatus(gp)
    
    	isScan := gpstatus&_Gscan != 0
    	gpstatus &^= _Gscan // drop the scan bit
    
    	// Basic string status
    	var status string
    	if 0 <= gpstatus && gpstatus < uint32(len(gStatusStrings)) {
    		status = gStatusStrings[gpstatus]
    	} else {
    		status = "???"
    	}
    
    	// Override.
    	if gpstatus == _Gwaiting && gp.waitreason != waitReasonZero {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    }
    
    func (o *ordering) advanceProcStatus(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	pid := ProcID(ev.args[0])
    	status := go122.ProcStatus(ev.args[1])
    	if int(status) >= len(go122ProcStatus2ProcState) {
    		return curCtx, false, fmt.Errorf("invalid status for proc %d: %d", pid, status)
    	}
    	oldState := go122ProcStatus2ProcState[status]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    					FilterChains: []listenertest.FilterChainTest{
    						{
    							TotalMatch: true,
    							Port:       8080,
    							HTTPFilters: []string{
    								xdsfilters.MxFilterName, xdsfilters.GrpcStats.Name, xdsfilters.Fault.Name,
    								xdsfilters.Cors.Name, wellknown.Router,
    							},
    							ValidateHCM: func(t test.Failer, hcm *hcm.HttpConnectionManager) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top