- Sort Score
- Result 10 results
- Languages All
Results 931 - 940 of 5,397 for returns (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Type.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
cmd/object-api-datatypes_gen.go
return } } case "EncodingType": z.EncodingType, bts, err = msgp.ReadStringBytes(bts) if err != nil { err = msgp.WrapError(err, "EncodingType") return } default: bts, err = msgp.Skip(bts) if err != nil { err = msgp.WrapError(err) return } } } o = bts return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 71.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/EditForm.java
@ValidateTypeFailure public Long id; /** * Returns a display-friendly identifier combining the dictionary ID and entry ID. * This method creates a composite identifier for UI display purposes. * * @return A string in the format "dictId:id" for display purposes */ public String getDisplayId() { return dictId + ":" + id; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/xml/XmlEscapers.java
* Specifically "\r" (carriage return) is preserved in the output, which may result in it being * silently converted to "\n" when the XML is parsed. * * <p>This escaper does not treat surrogate pairs specially and does not perform Unicode * validation on its input. */ public static Escaper xmlContentEscaper() { return XML_CONTENT_ESCAPER; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jun 20 17:15:33 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
* * @return the dialectIndex */ public int getDialectIndex() { return this.dialectIndex; } /** * Returns the server capabilities negotiated during the SMB handshake. * * @return the negotiated capabilities */ public int getNegotiatedCapabilities() { return this.capabilities; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixType.java
} char getLeafNodeCode() { return leafNodeCode; } char getInnerNodeCode() { return innerNodeCode; } /** Returns a PublicSuffixType of the right type according to the given code */ static PublicSuffixType fromCode(char code) { for (PublicSuffixType value : values()) { if (value.getInnerNodeCode() == code || value.getLeafNodeCode() == code) { return value; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Dec 16 19:54:45 UTC 2020 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
// In run all mode, this should return all web configs return Collections.emptyList(); } @Override public List<FileConfig> getFileConfigListByIds(List<String> fileConfigIdList) { // In run all mode, this should return all file configs return Collections.emptyList(); } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ComparisonChain.java
return this; } @Override public ComparisonChain compare(float left, float right) { return this; } @Override public ComparisonChain compare(double left, double right) { return this; } @Override public ComparisonChain compareTrueFirst(boolean left, boolean right) { return this; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.1K bytes - Viewed (0) -
cmd/iam-store.go
return getPolicies() }) if err != nil { return nil, err } res, ok := val.([]string) if !ok { return nil, errors.New("unexpected policy type") } return res, nil } return getPolicies() } // AddUsersToGroup - adds users to group, creating the group if needed.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 86.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcException.java
} /** * Returns the DCE/RPC error code associated with this exception * * @return the error code */ public int getErrorCode() { return this.error; } /** * * @return the root cause * @deprecated use {@link #getCause()} */ @Deprecated public Throwable getRootCause() { return getCause(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0)