- Sort Score
- Result 10 results
- Languages All
Results 691 - 700 of 7,303 for recur2 (0.04 sec)
-
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 36.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
* Locale. * @return The converted {@link Date}. */ protected static Date toDate(final Object src, final String pattern, final Locale locale) { if (src == null) { return null; } if (src.getClass() == Date.class) { return (Date) src; } if (src instanceof Date) { return new Date(((Date) src).getTime()); }Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
* The locale. * @return The converted {@link Date}. */ protected static Date toDate(final Object src, final String pattern, final Locale locale) { if (src == null) { return null; } if (src.getClass() == Date.class) { return (Date) src; } if (src instanceof Date) { return new Date(((Date) src).getTime()); }Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java
return this; } public ScenarioBuilder resumeFrom(String resumeFrom) { this.resumeFrom = resumeFrom; return this; } public ScenarioBuilder makeBehavior(String makeBehavior) { this.makeBehavior = makeBehavior; return this; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 09 20:39:03 UTC 2025 - 28K bytes - Viewed (0) -
fastapi/_compat/shared.py
return False return lenient_issubclass(annotation, sequence_types) def field_annotation_is_sequence(annotation: Union[type[Any], None]) -> bool: origin = get_origin(annotation) if origin is Union or origin is UnionType: for arg in get_args(annotation): if field_annotation_is_sequence(arg): return True return FalseRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 12:54:56 UTC 2025 - 6.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java
* Returns the temporary file associated with this input stream. * * @return the temporary file */ public File getTemporaryFile() { return tempFile; } /* * (non-Javadoc) * * @see java.io.InputStream#read() */ @Override public int read() throws IOException { return fileInputStream.read(); } @OverrideRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWriteAndX.java
} @Override int getBatchLimit(final byte command) { if (command == SMB_COM_READ_ANDX) { return READ_ANDX_BATCH_LIMIT; } if (command == SMB_COM_CLOSE) { return CLOSE_BATCH_LIMIT; } return 0; } @Override int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
* applied on output. * * @param bytes The block of data that is to be Base-64 encoded. * @return A <code>String</code> containing the encoded data. */ public static String encode(final byte[] bytes) { int length = bytes.length; if (length == 0) { return ""; } final StringBuilder buffer = new StringBuilder((int) Math.ceil(length / 3d) * 4);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SetTestSuiteBuilder.java
} @Override public SampleElements<E> samples() { return gen.samples(); } @Override public Set<E> create(Object... elements) { return (Set<E>) SerializableTester.reserialize(gen.create(elements)); } @Override public E[] createArray(int length) { return gen.createArray(length); } @OverrideRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 4.7K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblem.java
this.exception = exception; } @Override public String getSource() { return source; } @Override public int getLineNumber() { return lineNumber; } @Override public int getColumnNumber() { return columnNumber; } @Override public String getLocation() { StringBuilder buffer = new StringBuilder(256);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4.4K bytes - Viewed (0)