Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for openFile (0.07 sec)

  1. src/main/java/jcifs/smb/SmbNamedPipe.java

        @Override
        public int getPipeType() {
            return this.pipeType;
        }
    
        /**
         * @return a handle for interacting with the pipe
         */
        @Override
        public SmbPipeHandle openPipe() {
            return new SmbPipeHandleImpl(this);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

        @BeforeEach
        void setUp() throws IOException {
            // Setup mock behavior with lenient stubbing to avoid UnnecessaryStubbingException
            lenient().when(mockSmbNamedPipe.openPipe()).thenReturn(mockSmbPipeHandle);
            lenient().when(mockSmbPipeHandle.unwrap(SmbPipeHandleInternal.class)).thenReturn(mockSmbPipeHandleInternal);
            lenient().when(mockSmbNamedPipe.getContext()).thenReturn(mockContext);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    				MetricV2{
    					Description: getMinioFDOpenMD(),
    					Value:       float64(openFDs),
    				},
    			)
    		}
    
    		if l.OpenFiles > 0 {
    			metrics = append(metrics,
    				MetricV2{
    					Description: getMinioFDLimitMD(),
    					Value:       float64(l.OpenFiles),
    				})
    		}
    
    		if io.SyscR > 0 {
    			metrics = append(metrics,
    				MetricV2{
    					Description: getMinIOProcessSysCallRMD(),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 133.4K bytes
    - Viewed (0)
Back to top