- Sort Score
- Result 10 results
- Languages All
Results 1181 - 1190 of 1,274 for arrayOf (0.04 sec)
-
src/bufio/scan.go
func (s *Scanner) Err() error { if s.err == io.EOF { return nil } return s.err } // Bytes returns the most recent token generated by a call to [Scanner.Scan]. // The underlying array may point to data that will be overwritten // by a subsequent call to Scan. It does no allocation. func (s *Scanner) Bytes() []byte { return s.token }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 21 18:05:26 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
if (StringUtil.isBlank(input)) { return input; } return ComponentUtil.getDocumentHelper().encodeSimilarDocHash(input); } /** * Joins array or list elements into a single space-separated string. * * @param input the input object (String[], List, or String) * @return joined string with elements separated by spaces, or empty string if invalid input
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
assertEquals("arg1", pythonJob.argList.get(0)); assertEquals("arg2", pythonJob.argList.get(1)); assertEquals("arg3", pythonJob.argList.get(2)); } // Test args with empty array public void test_args_empty() { PythonJob result = pythonJob.args(); assertSame(pythonJob, result); assertTrue(pythonJob.argList.isEmpty()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
ci/official/containers/ml_build_arm64/builder.devtoolset/stringop_trunc.patch
--- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -391,6 +391,15 @@ #include <bits/wordsize.h> +#if __GNUC_PREREQ (8, 0) +/* Describes a char array whose address can safely be passed as the first + argument to strncpy and strncat, as the char array is not necessarily + a NUL-terminated string. */ +# define __attribute_nonstring__ __attribute__ ((__nonstring__)) +#else +# define __attribute_nonstring__ +#endif +
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 11 19:25:56 UTC 2024 - 42.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
* Resolves all addresses for the given hostname. * * @param hostname the hostname to resolve * @param possibleNTDomainOrWorkgroup whether to perform additional name query for master browser * @return array of resolved UniAddress instances * @throws UnknownHostException if the host cannot be resolved */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
assertSame(mockName, nbtAddress.getName()); } @Test void testGetAddress() { // Test getAddress for correct byte array conversion mockName = new Name(mockConfig, "TEST", 0x20, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
testParams.conditions.put(SearchRequestParams.AS_Q, null); assertFalse(searchRequestParams.hasConditionQuery()); } public void test_hasConditionQuery_withEmptyArray() { // Test with empty array testParams.conditions.put(SearchRequestParams.AS_Q, new String[] {}); assertFalse(searchRequestParams.hasConditionQuery()); } // Test for isEmptyArray method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
assertNull(crawlerContext.removeSitemaps()); // Test with null crawlerContext.addSitemaps(null); assertNull(crawlerContext.removeSitemaps()); // Test with empty array crawlerContext.addSitemaps(new String[0]); String[] emptyArray = crawlerContext.removeSitemaps(); assertNotNull(emptyArray); assertEquals(0, emptyArray.length); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SetViewTest.java
import static com.google.common.collect.Sets.symmetricDifference; import static com.google.common.collect.Sets.union; import static com.google.common.truth.Truth.assertThat; import static java.util.Arrays.asList; import static java.util.Collections.emptySet; import static java.util.Collections.singleton; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0)