- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 98 for webserver (0.06 sec)
-
ci/official/containers/ml_build_arm64/setup.sources.sh
export DEBIAN_FRONTEND=noninteractive # Set up shared custom sources apt-get update apt-get install -y gnupg ca-certificates # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776 # LLVM/Clang: https://apt.llvm.org/ apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key # Set up custom sources
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 11 19:25:56 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
public String getServerWithDfs() { if (this.dfsReferral != null) { return this.dfsReferral.getServer(); } return getServer(); } /** * {@inheritDoc} * * @see jcifs.SmbResourceLocator#getServer() */ @Override public String getServer() { final String str = this.url.getHost(); if (str.length() == 0) { return null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java
return url.toString(); } @Override public CIFSContext getTransportContext() { return this.pipe.getContext(); } @Override public String getServer() { return this.pipe.getLocator().getServer(); } @Override public String getServerWithDfs() { return this.pipe.getLocator().getServerWithDfs(); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
// Test with mock when(mockReferralData.getServer()).thenReturn(server); assertEquals(server, mockReferralData.getServer()); verify(mockReferralData, times(1)).getServer(); // Test with concrete implementation String concreteServer = concreteImplementation.getServer(); // Should be SERVER based on our initialization
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
SmbResourceLocatorImpl a = locator("smb://server:444/share"); assertEquals("server", a.getServer()); assertEquals(444, a.getPort()); assertEquals(smbUrl("smb://server:444/share"), a.getURL()); SmbResourceLocatorImpl b = locator("smb:///share"); assertNull(b.getServer()); } @Test @DisplayName("shouldForceSigning depends on config, creds, and IPC")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationTest.java
smbAuthentication = new SmbAuthentication(); smbAuthentication.setServer("hoge"); assertEquals("smb1://hoge/", smbAuthentication.getPathPrefix()); smbAuthentication = new SmbAuthentication(); smbAuthentication.setServer("hoge"); smbAuthentication.setPort(1000); assertEquals("smb1://hoge:1000/", smbAuthentication.getPathPrefix());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.5K bytes - Viewed (0) -
ci/official/containers/ml_build/setup.sources.sh
export DEBIAN_FRONTEND=noninteractive # Set up shared custom sources apt-get update apt-get install -y gnupg ca-certificates # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776 # LLVM/Clang: https://apt.llvm.org/ apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key # Set up custom sources
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 03 21:13:05 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
void testGetServer() throws Exception { DcerpcPipeHandle handle = createMockedDcerpcPipeHandle(); when(mockSmbResourceLocator.getServer()).thenReturn("testServer"); assertEquals("testServer", handle.getServer()); } @Test @DisplayName("Should return correct server name with DFS") void testGetServerWithDfs() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbFileTest.java
public void testGetServer() throws MalformedURLException { assertEquals("server", new SmbFile("smb1://server/share/file.txt").getServer()); assertEquals("server", new SmbFile("smb1://server/").getServer()); assertEquals(null, new SmbFile("smb1://").getServer()); } } @Nested class AttributeAndStateTests { @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
final String savedPath = rpath != null ? rpath.getPath() : null; final String savedFullPath = rpath != null ? rpath.getFullUNCPath() : null; final String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath(); final int maxRetries = this.ctx.getConfig().getMaxRequestRetries(); for (int retries = 1; retries <= maxRetries; retries++) { if (rpath != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1)