- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 421 for opens (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
/** * Default constructor. */ public ProcessFileDescriptorObj() { // Default constructor } /** Number of currently open file descriptors. */ public long open; /** Maximum number of file descriptors that can be opened. */ public long max; } /** * Data transfer object representing process CPU statistics. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
/** No process is on the other end of the pipe */ int NT_STATUS_PIPE_DISCONNECTED = 0xC00000b0; /** The pipe is being closed */ int NT_STATUS_PIPE_CLOSING = 0xC00000b1; /** Waiting for a process to open the other end of the pipe */ int NT_STATUS_PIPE_LISTENING = 0xC00000b3; /** The file that was specified is a directory */ int NT_STATUS_FILE_IS_A_DIRECTORY = 0xC00000ba;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileInputStreamTest.java
@DisplayName("Lifecycle and exception mapping") class LifecycleAndExceptions { @Test @DisplayName("open() acquires handle and closes it") void openDelegatesEnsureOpenAndCloses() throws Exception { SmbFileInputStream in = newStream(); in.open(); // ensureOpen returns acquired handle; try-with-resources must close it verify(mockHandle, times(1)).close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt
cache.remove("k1") // On Windows files still exist with open with 2 open sources. assertThat(readFileOrNull(getCleanFile("k1", 0))).isEqualTo(afterRemoveFileContents) assertThat(readFileOrNull(getDirtyFile("k1", 0))).isNull() // On Windows files still exist with open with 1 open source. snapshot1.assertValue(0, "a")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 75.7K bytes - Viewed (0) -
docs/en/docs/tutorial/debugging.md
It will then start the server with your **FastAPI** code, stop at your breakpoints, etc. Here's how it might look: <img src="/img/tutorial/debugging/image01.png"> --- If you use Pycharm, you can: * Open the "Run" menu. * Select the option "Debug...". * Then a context menu shows up. * Select the file to debug (in this case, `main.py`).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
req.setFileInformation(new FileBasicInfo(ctime, atime, mtime, 0L, attrs)); dh.send(req); } else if (dh.hasCapability(SmbConstants.CAP_NT_SMBS)) { // use the open file descriptor dh.send(new Trans2SetFileInformation(dh.getConfig(), dfd.getFid(), attrs, ctime, mtime, atime), new Trans2SetFileInformationResponse(dh.getConfig()));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/HpackDecodeTestBase.kt
import okhttp3.internal.http2.hpackjson.HpackJsonUtil import okhttp3.internal.http2.hpackjson.Story import okio.Buffer /** * Tests Hpack implementation using https://github.com/http2jp/hpack-test-case/ */ open class HpackDecodeTestBase { private val bytesIn = Buffer() private val hpackReader = Hpack.Reader(bytesIn, 4096) protected fun testDecoder(story: Story) { for (testCase in story.cases) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.2K bytes - Viewed (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/UnixDomainSocketFactory.java
private final File path; public UnixDomainSocketFactory(File path) { this.path = path; } @Override public Socket createSocket() throws IOException { UnixSocketChannel channel = UnixSocketChannel.open(); return new TunnelingUnixSocket(path, channel); } @Override public Socket createSocket(String host, int port) throws IOException { Socket result = createSocket(); try {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Dec 03 21:33:52 UTC 2023 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/package-info.java
* the License. */ /** * Static utilities for the eight primitive types and {@code void}, and value types for treating * them as unsigned or storing them in immutable arrays. * * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a> * library. * * <p>See the Guava User Guide article on <a * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jan 03 15:30:05 UTC 2025 - 2K bytes - Viewed (0) -
api/maven-api-toolchain/src/main/mdo/toolchains.mdo
<type>DOM</type> <description> Toolchain identification information, which will be matched against project requirements. <p>Actual content structure is completely open: each toolchain type will define its own format and semantics. <p>This is generally a properties format: {@code <name>value</name>} with predefined properties names.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 9.5K bytes - Viewed (0)