- Sort Score
- Result 10 results
- Languages All
Results 1731 - 1740 of 6,918 for RETURN (0.09 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java
} nodes.push(document.createElement("td")); return true; } if (elementName.equals("td")) { nodes.push(document.createElement("td")); return true; } return false; } @Override public void onEndElement(String elementName) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 29.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
* * @param value a primitive {@code int} value * @return a hash code for the value */ public static int hashCode(int value) { return value; } /** * Returns the {@code int} value that is equal to {@code value}, if possible. * * @param value any value in the range of the {@code int} type * @return the {@code int} value that equals {@code value}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 31K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
return new Smb2CreateResponse(tc.getConfig(), this.name); } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getPath() */ @Override public String getPath () { return '\\' + this.name; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 09:52:11 UTC 2019 - 14.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
cmdList.add(getCommandValue(buf.toString(), params)); } return cmdList; } private String getCommandValue(final String key, final Map<String, String> params) { final String value = params.get(key); if (value == null) { return key; } return value; } protected static class MonitorThread extends Thread {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
} }, CheckTeamCityKotlinDSL { override fun create(model: CIBuildModel, stage: Stage): OsAwareBaseGradleBuildType { return CheckTeamCityKotlinDSL(model, stage) } }, TestPerformanceTest { override fun create(model: CIBuildModel, stage: Stage): OsAwareBaseGradleBuildType { return TestPerformanceTest(model, stage) } },
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
guava/src/com/google/common/io/CharSource.java
if (charset.equals(this.charset)) { return CharSource.this; } return super.asCharSource(charset); } @Override public InputStream openStream() throws IOException { return new ReaderInputStream(CharSource.this.openStream(), charset, 8192); } @Override public String toString() { return CharSource.this.toString() + ".asByteSource(" + charset + ")";
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 25.5K bytes - Viewed (0) -
guava/src/com/google/common/cache/LocalCache.java
return refreshNanos > 0; } boolean usesAccessQueue() { return expiresAfterAccess() || evictsBySize(); } boolean usesWriteQueue() { return expiresAfterWrite(); } boolean recordsWrite() { return expiresAfterWrite() || refreshes(); } boolean recordsAccess() { return expiresAfterAccess(); } boolean recordsTime() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 149.2K bytes - Viewed (0) -
internal/config/lambda/event/errors.go
type ErrUnknownRegion struct { Region string } func (err ErrUnknownRegion) Error() string { return fmt.Sprintf("unknown region '%v'", err.Region) } // ErrARNNotFound - ARN not found error. type ErrARNNotFound struct { ARN ARN } func (err ErrARNNotFound) Error() string { return fmt.Sprintf("ARN '%v' not found", err.ARN) } // ErrInvalidARN - invalid ARN error. type ErrInvalidARN struct {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 07 16:12:41 UTC 2023 - 1.3K bytes - Viewed (0) -
internal/ioutil/append-file_windows.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 1.2K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingMissingRule.java
if (!isIncubating((JApiHasAnnotations) member) && !isInject((JApiHasAnnotations) member)) { return violationError(member); } } return null; } private Violation violationError(JApiCompatibility member) { return acceptOrReject(member, Violation.error(member, "Is not annotated with @Incubating")); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 06 19:15:15 UTC 2022 - 1.7K bytes - Viewed (0)