- Sort Score
- Num 10 results
- Language All
Results 5611 - 5620 of 7,804 for RETURN (0.04 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/AbstractVersionTransformation.java
RepositoryRequest request = new DefaultRepositoryRequest(); request.setLocalRepository(localRepository); request.setRemoteRepositories(remoteRepositories); return resolveVersion(artifact, request); } protected String resolveVersion(Artifact artifact, RepositoryRequest request) throws RepositoryMetadataResolutionException { RepositoryMetadata metadata;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.2K bytes - Click Count (0) -
src/test/java/jcifs/smb1/util/transport/TransportExceptionTest.java
assertEquals(rootCause, exception.getRootCause()); } } @Nested @DisplayName("GetRootCause Tests") class GetRootCauseTests { @Test @DisplayName("Should return root cause when set") void testGetRootCause() { Exception rootCause = new IllegalStateException("Test root cause"); TransportException exception = new TransportException("Message", rootCause);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.5K bytes - Click Count (0) -
docs_src/python_types/tutorial003_py310.py
def get_name_with_age(name: str, age: int): name_with_age = name + " is this old: " + age
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 119 bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.native.js
Platform.getDeclaringClassOrNullForJ2cl = function(e) { return null;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri May 26 21:15:08 GMT 2023 - 73 bytes - Click Count (0) -
cmd/object_api_suite_test.go
} func (r *testOneByteReadEOF) Read(p []byte) (n int, err error) { if r.eof { return 0, io.EOF } n = copy(p, r.data) r.eof = true return n, io.EOF } // Return pointer to testOneByteReadNoEOF{} func newTestReaderNoEOF(data []byte) io.Reader { return &testOneByteReadNoEOF{false, data} } // testOneByteReadNoEOF - implements io.Reader which returns 1 byte and nil error, but // returns io.EOF on the next Read().
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 34.5K bytes - Click Count (0) -
docs_src/python_types/tutorial004_py310.py
def get_name_with_age(name: str, age: int): name_with_age = name + " is this old: " + str(age)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 124 bytes - Click Count (0) -
docs/en/docs/tutorial/background-tasks.md
* As connecting to an email server and sending an email tends to be "slow" (several seconds), you can return the response right away and send the email notification in the background. * Processing data: * For example, let's say you receive a file that must go through a slow process, you can return a response of "Accepted" (HTTP 202) and process the file in the background. ## Using `BackgroundTasks` { #using-backgroundtasks }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.7K bytes - Click Count (0) -
cmd/metrics-v3-bucket-replication.go
func loadBucketReplicationMetrics(ctx context.Context, m MetricValues, c *metricsCache, buckets []string) error { if globalSiteReplicationSys.isEnabled() { return nil } dataUsageInfo, err := c.dataUsageInfo.Get() if err != nil { metricsLogIf(ctx, err) return nil } bucketReplStats := globalReplicationStats.Load().getAllLatest(dataUsageInfo.BucketsUsage) for _, bucket := range buckets {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Jun 04 20:45:31 GMT 2025 - 8.3K bytes - Click Count (0) -
docs_src/python_types/tutorial001_py310.py
def get_full_name(first_name, last_name): full_name = first_name.title() + " " + last_name.title() return full_name
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 162 bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 4.4K bytes - Click Count (0)