Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testserver (0.15 sec)

  1. cmd/server_test.go

    	s.testServer.cancel()
    	s.testServer.Server.Close()
    	s.testServer.Obj.Shutdown(context.Background())
    
    	// Restart.
    	ctx, cancel := context.WithCancel(context.Background())
    
    	s.testServer.cancel = cancel
    	s.testServer = initTestServerWithBackend(ctx, c, s.testServer, s.testServer.Obj, s.testServer.rawDiskPaths)
    	if s.secure {
    		s.testServer.Server.StartTLS()
    	} else {
    		s.testServer.Server.Start()
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 118.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                        try {
                            ret = getAddress().equals(f.getAddress());
                        } catch (final UnknownHostException uhe) {
                            ret = getServer().equalsIgnoreCase(f.getServer());
                        }
                        return ret;
                    }
                }
            }
    
            return false;
        }
        /*
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

         *
         * @return The server or workgroup name or <code>null</code> if this
         *         <code>SmbFile</code> refers to the root <code>smb://</code> resource.
         */
        public String getServer() {
            return this.fileLocator.getServer();
        }
    
        @Override
        public SmbWatchHandle watch(final int filter, final boolean recursive) throws CIFSException {
    
            if (filter == 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top