- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 272 for unpipe (0.04 seconds)
-
android/guava/src/com/google/common/io/CharSink.java
import java.io.Reader; import java.io.Writer; import java.nio.charset.Charset; import java.util.Iterator; import java.util.stream.Stream; /** * A destination to which characters can be written, such as a text file. Unlike a {@link Writer}, a * {@code CharSink} is not an open, stateful stream that can be written to and closed. Instead, it * is an immutable <i>supplier</i> of {@code Writer} instances. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Apr 14 16:07:06 GMT 2025 - 6.7K bytes - Click Count (0) -
ci/devinfra/docker/windows2022/Dockerfile
# This Dockerfile creates an image that has: # - the correct MTU setting for networking from inside the container to work. # - Visual Studio 2022 Build Tools # - MSVC 14.39 # - LLVM/Clang 18.1.4 # - MSYS2 + curl, git, patch, vim, unzip, zip # - Python 3.9 - 3.13 # - Bazelisk 1.22.1 # - JDK 21 (Azul Zulu) FROM mcr.microsoft.com/windows/servercore:ltsc2022 SHELL ["powershell.exe", "-ExecutionPolicy", "Bypass", "-Command", \
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Mon Jan 13 18:59:55 GMT 2025 - 10.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
@Test @DisplayName("Test constructor initializes fields correctly") void testConstructor() { netShareEnum = new NetShareEnum(realConfig); assertNotNull(netShareEnum); assertEquals("\\PIPE\\LANMAN", getFieldValue(netShareEnum, "name")); assertEquals(8, getFieldValue(netShareEnum, "maxParameterCount")); assertEquals((byte) 0x00, getFieldValue(netShareEnum, "maxSetupCount"));Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
assertNotNull(netServerEnum2); assertEquals(domain, getFieldValue(netServerEnum2, "domain")); assertEquals(serverTypes, getFieldValue(netServerEnum2, "serverTypes")); assertEquals("\\PIPE\\LANMAN", getFieldValue(netServerEnum2, "name")); assertEquals(8, getFieldValue(netServerEnum2, "maxParameterCount")); assertEquals(16384, getFieldValue(netServerEnum2, "maxDataCount"));Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/Lists.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 42.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
} catch (final SmbException se) { fp = 0L; } } if (file instanceof SmbNamedPipe && file.unc.startsWith("\\pipe\\")) { file.unc = file.unc.substring(5); file.send(new TransWaitNamedPipe("\\pipe" + file.unc), new TransWaitNamedPipeResponse()); } file.open(openFlags, access | SmbConstants.FILE_WRITE_DATA, SmbFile.ATTR_NORMAL, 0);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/net/NetShareEnum.java
* @param config * the configuration to use */ public NetShareEnum(final Configuration config) { super(config, SMB_COM_TRANSACTION, NET_SHARE_ENUM); this.name = "\\PIPE\\LANMAN"; this.maxParameterCount = 8; // maxDataCount = 4096; why was this set? this.maxSetupCount = (byte) 0x00; this.setupCount = 0; this.timeout = 5000; }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.3K bytes - Click Count (0) -
internal/dsync/dsync-client_test.go
ResponseHeaderTimeout: 15 * time.Minute, // Set conservative timeouts for MinIO internode. TLSHandshakeTimeout: 15 * time.Second, ExpectContinueTimeout: 15 * time.Second, // Go net/http automatically unzip if content-type is // gzip disable this feature, as we are always interested // in raw stream. DisableCompression: true, } return &ReconnectRESTClient{ u: u, rest: rest.NewClient(u, tr, nil), }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Jan 20 17:36:09 GMT 2022 - 4.4K bytes - Click Count (0) -
src/main/java/jcifs/SmbTreeHandle.java
/** * Gets the remote host name for this tree connection * @return the remote host name */ String getRemoteHostName(); /** * Gets the tree type (share type such as disk, printer, pipe, etc.) * @return the tree type */ int getTreeType();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NetShareEnum.java
private static final String DESCR = "WrLeh\u0000B13BWz\u0000"; NetShareEnum() { command = SMB_COM_TRANSACTION; subCommand = NET_SHARE_ENUM; // not really true be used by upper logic name = "\\PIPE\\LANMAN"; maxParameterCount = 8; // maxDataCount = 4096; why was this set? maxSetupCount = (byte) 0x00; setupCount = 0; timeout = 5000; } @OverrideCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 2.7K bytes - Click Count (0)