- Sort Score
- Result 10 results
- Languages All
Results 1231 - 1240 of 5,298 for recur2 (0.04 sec)
- 
				
				src/main/java/org/codelibs/core/collection/SLinkedList.java} return getLastEntry().element; } /** * Returns the first entry. * * @return the first entry */ public Entry getFirstEntry() { if (isEmpty()) { return null; } return header.next; } /** * Returns the last entry. * * @return the last entry */Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0)
- 
				
				cmd/batch-job-common-types.goerr := val.Decode(&tmp) if err != nil { return err } *kv = BatchJobKV(tmp) kv.line, kv.col = val.Line, val.Column return nil } // Validate returns an error if key is empty func (kv BatchJobKV) Validate() error { if kv.Key == "" { return BatchJobYamlErr{ line: kv.line, col: kv.col, msg: "key can't be empty", } } return nil } // Empty indicates if kv is not set Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.9K bytes - Viewed (0)
- 
				
				android/guava/src/com/google/common/primitives/ImmutableLongArray.javaRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 22K bytes - Viewed (0)
- 
				
				guava/src/com/google/common/primitives/ImmutableIntArray.javaif (object == this) { return true; } if (!(object instanceof ImmutableIntArray)) { return false; } ImmutableIntArray that = (ImmutableIntArray) object; if (this.length() != that.length()) { return false; } for (int i = 0; i < length(); i++) { if (this.get(i) != that.get(i)) { return false; } } return true; } Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 21.4K bytes - Viewed (0)
- 
				
				fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.javaRegistered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.3K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/internal/smb2/persistent/HandleInfo.javareturn Arrays.copyOf(fileId, 16); } /** * Get the handle type * @return the handle type */ public HandleType getType() { return type; } /** * Get the timeout * @return the timeout in milliseconds */ public long getTimeout() { return timeout; } /** * Get the create time Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/core/misc/Tuple4.javaRegistered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.5K bytes - Viewed (0)
- 
				
				android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java} /** * Used by tests that require a map, but don't care whether it's populated or not. * * @return a new map instance. */ protected Map<K, V> makeEitherMap() { try { return makePopulatedMap(); } catch (UnsupportedOperationException e) { return makeEmptyMap(); } } @SuppressWarnings("CatchingUnchecked") // sneaky checked exception Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 43.9K bytes - Viewed (0)
- 
				
				cmd/kms-handlers.goif objectAPI == nil { return } if GlobalKMS == nil { writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrKMSNotConfigured), r.URL) return } stat, err := GlobalKMS.Status(ctx) if err != nil { writeCustomErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInternalError), err.Error(), r.URL) return } resp, err := json.Marshal(stat) if err != nil {Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 10.1K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/util/ServerResponseValidator.javapublic long getTotalValidations() { return totalValidations; } public long getFailedValidations() { return failedValidations; } public long getBufferOverflowsPrevented() { return bufferOverflowsPrevented; } public long getIntegerOverflowsPrevented() { return integerOverflowsPrevented; } Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0)