- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 172 for rtinfo (0.04 seconds)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
assertEquals(9999, ftpInfo.getPort()); assertEquals("/", ftpInfo.getParent()); assertNull(ftpInfo.getName()); value = "ftp://123.123.123.123/test.txt"; ftpInfo = new FtpClient.FtpInfo(value, Constants.UTF_8); assertEquals(value, ftpInfo.toUrl()); assertEquals("123.123.123.123:21", ftpInfo.getCacheKey()); assertEquals("123.123.123.123", ftpInfo.getHost());
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 21.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
assertEquals(offset, bytesRead); assertNotNull(response.getInfo()); assertTrue(response.getInfo() instanceof SmbInfoAllocation); SmbInfoAllocation info = (SmbInfoAllocation) response.getInfo(); assertEquals(8L * 1000000L * 512L, info.getCapacity()); assertEquals(8L * 500000L * 512L, info.getFree()); } @TestCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseInvokerRequest.java
} @Override public Optional<List<CoreExtensions>> coreExtensions() { return Optional.ofNullable(coreExtensions); } @Override public Optional<CIInfo> ciInfo() { return Optional.ofNullable(ciInfo); } public Optional<Options> options() { return Optional.ofNullable(options); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 4.2K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/GenericCIDetector.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
infoField.setAccessible(true); infoField.set(response, mockDecodable); Decodable first = response.getInfo(); Decodable second = response.getInfo(); assertSame(first, second, "Multiple calls should return the same instance"); } @Test @DisplayName("Test getInfo with null info returns null") void testGetInfoWithNullInfo() {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
* </p> * * <pre> * {@code * FtpInfo ftpInfo = new FtpInfo("ftp://example.com/path/to/file.txt"); * String host = ftpInfo.getHost(); // example.com * int port = ftpInfo.getPort(); // 21 * String parent = ftpInfo.getParent(); // /path/to * String name = ftpInfo.getName(); // file.txt * String childUrl = ftpInfo.toChildUrl("anotherfile.txt"); // ftp://example.com/path/to/anotherfile.txtCreated: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 40K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java
} @Test @DisplayName("Test getInfo when info is null") void testGetInfoWhenNull() { response = new Trans2QueryPathInformationResponse(mockConfig, FileInformation.FILE_BASIC_INFO); assertNull(response.getInfo()); } @Test @DisplayName("Test getInfo with type when info is null") void testGetInfoWithTypeWhenNull() {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.9K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
/** * Returns detected CI system, if any. * * @return an {@link Optional} containing the {@link CIInfo} collected from CI system. or empty if CI not * detected. */ @Nonnull Optional<CIInfo> ciInfo(); /** * Returns the options associated with this invocation request. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 6.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/GithubCIDetector.java
import org.apache.maven.api.cli.cisupport.CIInfo; /** * GitHub CI support. */ public class GithubCIDetector implements CIDetector { public static final String NAME = "GitHub"; private static final String GITHUB_ACTIONS = "GITHUB_ACTIONS"; private static final String RUNNER_DEBUG = "RUNNER_DEBUG"; @Override public Optional<CIInfo> detectCI() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/TravisCIDetector.java
import java.util.Optional; import org.apache.maven.api.cli.cisupport.CIInfo; /** * Travis CI support. */ public class TravisCIDetector implements CIDetector { public static final String NAME = "Travis"; private static final String TRAVIS = "TRAVIS"; private static final String TRAVIS_DEBUG_MODE = "TRAVIS_DEBUG_MODE"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(TRAVIS);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.7K bytes - Click Count (0)