- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 551 for gats (0.02 sec)
-
src/test/java/org/codelibs/core/lang/ObjectUtilTest.java
* the s to set */ public void setS(final String s) { this.s = s; } /** * @return the s */ public String getS() { return s; } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.9K bytes - Viewed (0) -
cmd/config-versions.go
} // ConsoleLogger is introduced to workaround the dependency about logrus type ConsoleLogger struct { Enable bool `json:"enable"` } // serverConfigV33 is just like version '32', removes clientID from NATS and MQTT, and adds queueDir, queueLimit in all notification targets. type serverConfigV33 struct { quick.Config `json:"-"` // ignore interfaces Version string `json:"version"` // S3 API configuration.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
// Text with comma gets quoted, but parse preserves quotes input = "with,comma"; escaped = KuromojiCSVUtil.quoteEscape(input); // "with,comma" parsed = KuromojiCSVUtil.parse(escaped); assertEquals(1, parsed.length); assertEquals("\"" + input + "\"", parsed[0]); // Quotes are preserved // Text with quotes gets escaped quotes, but escaped quotes don't get unquoted
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
registration.incrementHeartbeatFailures(); } } /** * Gets the witness server address. * * @return the witness server address */ public InetAddress getWitnessServer() { return witnessServer; } /** * Gets the number of active registrations. * * @return the number of active registrations */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } osddFile = getOsddFile(); } /** * Gets the OSDD file. * * @return the OSDD file */ protected File getOsddFile() { if (!isOsddLinkEnabled()) { logger.debug("OSDD is disabled."); return null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/StripedBenchmark.java
for (int i = 0; i < numStripes; i++) { stripes[i] = i; } List<Integer> asList = Ints.asList(stripes); Collections.shuffle(asList, new Random(0xdeadbeef)); // do bulk gets with exactly 10 keys (possibly <10 stripes) (or less if numStripes is smaller) bulkGetSet = ImmutableList.copyOf(limit(cycle(asList), 10)); } @Footprint Object sizeOfStriped() { return impl.get(numStripes);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4K bytes - Viewed (0) -
api/maven-api-cli/src/main/mdo/core-extensions.mdo
<type>DOM</type> </field> </fields> <codeSegments> <codeSegment> <version>1.0.0+</version> <code> <![CDATA[ /** * Gets the identifier of the extension. * * @return The extension id in the form {@code <groupId>:<artifactId>:<version>}, never {@code null}. */ public String getId() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
} catch (final Exception e) { logger.error("Failed to purge thumbnails.", e); return e.getMessage(); } } /** * Gets the expiration time for thumbnails. * * @return the expiration time in milliseconds */ public long getExpiry() { return expiry; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/InputStreamUtil.java
try { return new FileInputStream(file); } catch (final IOException e) { throw new IORuntimeException(e); } } /** * Gets a byte array from an {@link InputStream}. * <p> * The input stream is not closed. * </p> * * @param is the input stream (must not be {@literal null}) * @return the byte array */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSeekResponse.java
/** * Constructs a seek response. * * @param config the configuration */ public SmbComSeekResponse(final Configuration config) { super(config); } /** * Gets the current file offset after the seek operation. * * @return the offset */ public long getOffset() { return this.offset; } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 2.8K bytes - Viewed (0)