Search Options

Results per page
Sort
Preferred Languages
Advance

Results 521 - 530 of 5,520 for AsString (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    fullMessage = join(fullMessage, "[CIRCULAR REFERENCE]");
                    break;
                }
            }
    
            return fullMessage.trim();
        }
    
        private String join(String message1, String message2) {
            String message = "";
    
            if (message1 != null && !message1.isEmpty()) {
                message = message1.trim();
            }
    
            if (message2 != null && !message2.isEmpty()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. cmd/handler-utils.go

    func extractMetadataFromReq(ctx context.Context, r *http.Request) (metadata map[string]string, err error) {
    	return extractMetadata(ctx, textproto.MIMEHeader(r.Form), textproto.MIMEHeader(r.Header))
    }
    
    func extractMetadata(ctx context.Context, mimesHeader ...textproto.MIMEHeader) (metadata map[string]string, err error) {
    	metadata = make(map[string]string)
    
    	for _, hdr := range mimesHeader {
    		// Extract all query values.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWordToLabel.java

        public String getElevateWordId() {
            checkSpecifiedProperty("elevateWordId");
            return convertEmptyToNull(elevateWordId);
        }
    
        public void setElevateWordId(String value) {
            registerModifiedProperty("elevateWordId");
            this.elevateWordId = value;
        }
    
        public String getLabelTypeId() {
            checkSpecifiedProperty("labelTypeId");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/AbstractLanguageElement.java

        private String rawCommentText;
        private final List<String> annotationNames = new ArrayList<String>();
        private String replacement;
    
        protected AbstractLanguageElement() {
        }
    
        protected AbstractLanguageElement(String rawCommentText) {
            this.rawCommentText = rawCommentText;
        }
    
        @Override
        public String getRawCommentText() {
            return rawCommentText;
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

        @Required
        @Size(max = 100)
        public String docId;
    
        @Size(max = 10000)
        @Required
        public String rt;
    
        public String hash;
    
        @Required
        public String queryId;
    
        public Integer order;
    
        // for error page
    
        public String q;
    
        public String num;
    
        public String sort;
    
        public String lang;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. schema/schema_helper_test.go

    		}
    	})
    }
    
    type Relation struct {
    	Name        string
    	Type        schema.RelationshipType
    	Schema      string
    	FieldSchema string
    	Polymorphic Polymorphic
    	JoinTable   JoinTable
    	References  []Reference
    }
    
    type Polymorphic struct {
    	ID    string
    	Type  string
    	Value string
    }
    
    type JoinTable struct {
    	Name   string
    	Table  string
    	Fields []schema.Field
    }
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/ElevateWord.java

            }
            return labelTypeList;
        }
    
        public String[] getLabelTypeValues() {
            final List<LabelType> list = getLabelTypeList();
            final List<String> labelValueList = new ArrayList<>(list.size());
            for (final LabelType labelType : list) {
                labelValueList.add(labelType.getValue());
            }
            return labelValueList.toArray(new String[labelValueList.size()]);
        }
    
        public String getId() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. clause/expression_test.go

    			clause.Expr{SQL: result.SQL, Vars: result.Vars}.Build(stmt)
    			if stmt.SQL.String() != result.Result {
    				t.Errorf("generated SQL is not equal, expects %v, but got %v", result.Result, stmt.SQL.String())
    			}
    		})
    	}
    }
    
    func TestNamedExpr(t *testing.T) {
    	type Base struct {
    		Name2 string
    	}
    
    	type NamedArgument struct {
    		Name1 string
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Aug 10 05:34:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. api/go1.19.txt

    pkg go/doc, method (*Package) Markdown(string) []uint8 #51082
    pkg go/doc, method (*Package) Parser() *comment.Parser #51082
    pkg go/doc, method (*Package) Printer() *comment.Printer #51082
    pkg go/doc, method (*Package) Synopsis(string) string #51082
    pkg go/doc, method (*Package) Text(string) []uint8 #51082
    pkg go/doc/comment, func DefaultLookupPackage(string) (string, bool) #51082
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  10. internal/jwt/parser.go

    		}
    		switch key[0] {
    		case 'a':
    			if string(key) == "accessKey" {
    				if dataType != jsonparser.String {
    					return errors.New("accessKey: Expected string")
    				}
    				c.AccessKey, err = jsonparser.ParseString(value)
    				return err
    			}
    			if string(key) == "aud" {
    				if dataType != jsonparser.String {
    					return errors.New("aud: Expected string")
    				}
    				c.Audience, err = jsonparser.ParseString(value)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 17 16:45:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top