Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for barcode (0.2 sec)

  1. src/main/resources/fess_message_ru.properties

    #                                        -------------------
    constraints.CreditCardNumber.message        = {item} is invalid credit card number.
    constraints.EAN.message                     = {item} is invalid {type} barcode.
    constraints.Email.message                   = {item} is not a well-formed email address.
    constraints.Length.message                  = Length of {item} must be between {min} and {max}.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_en.properties

    #                                        -------------------
    constraints.CreditCardNumber.message        = {item} is invalid credit card number.
    constraints.EAN.message                     = {item} is invalid {type} barcode.
    constraints.Email.message                   = {item} is not a well-formed email address.
    constraints.Length.message                  = Length of {item} must be between {min} and {max}.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    #                                        -------------------
    constraints.CreditCardNumber.message        = {item} is invalid credit card number.
    constraints.EAN.message                     = {item} is invalid {type} barcode.
    constraints.Email.message                   = {item} is not a well-formed email address.
    constraints.Length.message                  = Length of {item} must be between {min} and {max}.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_CreditCardNumber_MESSAGE = "{constraints.CreditCardNumber.message}";
    
        /** The key of the message: {item} is invalid {type} barcode. */
        public static final String CONSTRAINTS_EAN_MESSAGE = "{constraints.EAN.message}";
    
        /** The key of the message: {item} is not a well-formed email address. */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  5. cmd/api-errors_test.go

    	{err: ObjectNameInvalid{}, errCode: ErrInvalidObjectName},
    	{err: InvalidUploadID{}, errCode: ErrNoSuchUpload},
    	{err: InvalidPart{}, errCode: ErrInvalidPart},
    	{err: InsufficientReadQuorum{}, errCode: ErrSlowDownRead},
    	{err: InsufficientWriteQuorum{}, errCode: ErrSlowDownWrite},
    	{err: InvalidUploadIDKeyCombination{}, errCode: ErrNotImplemented},
    	{err: MalformedUploadID{}, errCode: ErrNoSuchUpload},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 25 15:13:08 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils_test.go

    	// calling the function being tested.
    	errCode := checkMetaHeaders(signedHeadersMap, r)
    	if errCode != ErrNone {
    		t.Fatalf("Expected the APIErrorCode to be %d, but got %d", ErrNone, errCode)
    	}
    
    	// Add new metadata in inputHeader
    	inputHeader.Set("X-Amz-Meta-Clone", "fail")
    	// calling the function being tested.
    	errCode = checkMetaHeaders(signedHeadersMap, r)
    	if errCode != ErrUnsignedHeaders {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 05 21:26:41 GMT 2024
    - 14.3K bytes
    - Viewed (0)
  7. cmd/signature-v2_test.go

    		formValues.Set("Signature", test.signature)
    		formValues.Set("Policy", test.policy)
    		_, errCode := doesPolicySignatureV2Match(formValues)
    		if errCode != test.errCode {
    			t.Fatalf("(%d) expected to get %s, instead got %s", i+1, niceError(test.errCode), niceError(errCode))
    		}
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Oct 14 10:08:40 GMT 2022
    - 8K bytes
    - Viewed (0)
  8. cmd/api-resources.go

    // Parse bucket url queries
    func getListObjectsV1Args(values url.Values) (prefix, marker, delimiter string, maxkeys int, encodingType string, errCode APIErrorCode) {
    	errCode = ErrNone
    
    	if values.Get("max-keys") != "" {
    		var err error
    		if maxkeys, err = strconv.Atoi(values.Get("max-keys")); err != nil {
    			errCode = ErrInvalidMaxKeys
    			return
    		}
    	} else {
    		maxkeys = maxObjectList
    	}
    
    	prefix = values.Get("prefix")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Jun 07 18:25:26 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  9. cmd/auth-handler_test.go

    	testCases := []struct {
    		Request *http.Request
    		ErrCode APIErrorCode
    	}{
    		{Request: mustNewRequest(http.MethodGet, "http://127.0.0.1:9000", 0, nil, t), ErrCode: ErrAccessDenied},
    		{Request: mustNewSignedRequest(http.MethodGet, "http://127.0.0.1:9000", 0, nil, t), ErrCode: ErrNone},
    		{Request: mustNewSignedV2Request(http.MethodGet, "http://127.0.0.1:9000", 0, nil, t), ErrCode: ErrAccessDenied},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  10. cmd/sts-errors.go

    	"github.com/minio/minio/internal/logger"
    )
    
    // writeSTSErrorResponse writes error headers
    func writeSTSErrorResponse(ctx context.Context, w http.ResponseWriter, errCode STSErrorCode, err error) {
    	stsErr := stsErrCodes.ToSTSErr(errCode)
    
    	// Generate error response.
    	stsErrorResponse := STSErrorResponse{}
    	stsErrorResponse.Error.Code = stsErr.Code
    	stsErrorResponse.RequestID = w.Header().Get(xhttp.AmzRequestID)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top