Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for message1 (0.18 sec)

  1. pkg/workloadapi/workload.pb.go

    func (*Address) ProtoMessage() {}
    
    func (x *Address) ProtoReflect() protoreflect.Message {
    	mi := &file_workloadapi_workload_proto_msgTypes[0]
    	if protoimpl.UnsafeEnabled && x != nil {
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		if ms.LoadMessageInfo() == nil {
    			ms.StoreMessageInfo(mi)
    		}
    		return ms
    	}
    	return mi.MessageOf(x)
    }
    
    // Deprecated: Use Address.ProtoReflect.Descriptor instead.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	if condition := findConditionByType(list, cType); condition != nil {
    		if condition.Status != status || condition.Reason != reason || condition.Message != message {
    			*condition = *newCondition(cType, status, reason, message, now)
    			return list, true
    		}
    		return list, false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    			}
    		case minio.ErrorResponse:
    			apiErr = APIError{
    				Code:           e.Code,
    				Description:    e.Message,
    				HTTPStatusCode: e.StatusCode,
    			}
    			if strings.Contains(e.Message, "KMS is not configured") {
    				apiErr = APIError{
    					Code:           "NotImplemented",
    					Description:    e.Message,
    					HTTPStatusCode: http.StatusNotImplemented,
    				}
    			}
    		case *googleapi.Error:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  4. src/time/format.go

    type ParseError struct {
    	Layout     string
    	Value      string
    	LayoutElem string
    	ValueElem  string
    	Message    string
    }
    
    // newParseError creates a new ParseError.
    // The provided value and valueElem are cloned to avoid escaping their values.
    func newParseError(layout, value, layoutElem, valueElem, message string) *ParseError {
    	valueCopy := stringslite.Clone(value)
    	valueElemCopy := stringslite.Clone(valueElem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    ) {
    	anonTestStr := "Anonymous HTTP request test"
    	unknownSignTestStr := "Unknown HTTP signature test"
    
    	// simple function which returns a message which gives the context of the test
    	// and then followed by the actual error message.
    	failTestStr := func(testType, failMsg string) string {
    		return fmt.Sprintf("MinIO %s: %s fail for \"%s\": \n<Error> %s", instanceType, testType, testName, failMsg)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a missing `status.` prefix on custom resource validation error messages. ([#123822](https://github.com/kubernetes/kubernetes/pull/123822), [@JoelSpeed](https://github.com/JoelSpeed)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. cmd/iam.go

    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    	// messages but continue any way - they can be fixed in the
    	// running server by creating the policies after start up.
    	for arn, rolePolicies := range m {
    		specifiedPoliciesSet := newMappedPolicy(rolePolicies).policySet()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    		if len(actualLocalHosts) != len(tt.expected) {
    			t.Errorf("Test %s failed, expected: %v got: %v", tt.name, tt.expected, actualLocalHosts)
    		}
    	}
    }
    
    // Test to catch new fields in FilterChainMatch message.
    func TestFilterChainMatchFields(t *testing.T) {
    	fcm := listener.FilterChainMatch{}
    	e := reflect.ValueOf(&fcm).Elem()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	return m
    }
    
    func verifyActions(t *testing.T, expected, actual *podActions, desc string) {
    	if actual.ContainersToKill != nil {
    		// Clear the message and reason fields since we don't need to verify them.
    		for k, info := range actual.ContainersToKill {
    			info.message = ""
    			info.reason = ""
    			actual.ContainersToKill[k] = info
    		}
    	}
    	assert.Equal(t, expected, actual, desc)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	case runtime.Object:
    		errEvent.Object = err
    	case *errors.StatusError:
    		errEvent.Object = &err.ErrStatus
    	default:
    		errEvent.Object = &metav1.Status{
    			Status:  metav1.StatusFailure,
    			Message: err.Error(),
    			Reason:  metav1.StatusReasonInternalError,
    			Code:    http.StatusInternalServerError,
    		}
    	}
    
    	// Create a watcher with room for a single event, populate it, and close the channel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top