Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for CIFS (0.16 sec)

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

        private static final long serialVersionUID = 1999400043787454432L;
        private static final Logger log = LoggerFactory.getLogger(Kerb5Authenticator.class);
        private static final String DEFAULT_SERVICE = "cifs";
    
        private static final Set<ASN1ObjectIdentifier> PREFERRED_MECHS = new HashSet<>();
    
        private Subject subject = null;
        private String user = null;
        private String realm = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  2. pom.xml

    	<version>2.1.38-SNAPSHOT</version>
    	<packaging>jar</packaging>
    	<name>jCIFS</name>
    	<url>https://github.com/codelibs/jcifs</url>
    	<description>JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java</description>
    	<licenses>
    		<license>
    			<name>GNU Lesser General Public License, version 2.1</name>
    			<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
    XML
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        private static SSPContext setupTargetName ( CIFSContext tc, String host, NtlmContext ntlmContext ) {
            if ( host != null && tc.getConfig().isSendNTLMTargetName() ) {
                ntlmContext.setTargetName(String.format("cifs/%s", host));
            }
            return ntlmContext;
        }
    
    
        @Override
        public NtlmPasswordAuthenticator clone () {
            NtlmPasswordAuthenticator cloned = new NtlmPasswordAuthenticator();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NetworkExplorer.java

                this.transportContext = new BaseContext(new PropertyConfiguration(p));
            }
            catch ( CIFSException ex ) {
                throw new ServletException("Failed to initialize CIFS context", ex);
            }
        }
    
    
        protected void doFile ( HttpServletRequest req, HttpServletResponse resp, SmbFile file ) throws IOException {
            byte[] buf = new byte[8192];
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

         */
        public SmbFile[] listFiles () throws SmbException {
            return SmbEnumerationUtil.listFiles(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null);
        }
    
    
        /**
         * The CIFS protocol provides for DOS "wildcards" to be used as
         * a performance enhancement. The client does not have to filter
         * the names and the server does not have to return all directory
         * entries.
         * <p>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * of the resource URL
     */
        public SmbFile[] listFiles() throws SmbException {
            return listFiles( "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null );
        }
    
    /**
     * The CIFS protocol provides for DOS "wildcards" to be used as
     * a performance enhancement. The client does not have to filter
     * the names and the server does not have to return all directory
     * entries.
     * <p>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Fix upgrade.sh image setup ([#34468](https://github.com/kubernetes/kubernetes/pull/34468), [@mtaufen](https://github.com/mtaufen))
    * Add `cifs-utils` to the hyperkube image. ([#34416](https://github.com/kubernetes/kubernetes/pull/34416), [@colemickens](https://github.com/colemickens))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.7.md

      * Fixes a bug in the kubernetes-worker Juju charm code that attempted to give kube-proxy more than one api endpoint. ([#44677](https://github.com/kubernetes/kubernetes/pull/44677), [@wwwtyro](https://github.com/wwwtyro))
    
      * Added CIFS PV support for Juju Charms ([#45117](https://github.com/kubernetes/kubernetes/pull/45117), [@chuckbutler](https://github.com/chuckbutler))
    
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 308.7K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.5.md

    * Test x509 intermediates correctly ([#34524](https://github.com/kubernetes/kubernetes/pull/34524), [@liggitt](https://github.com/liggitt))
    * Add `cifs-utils` to the hyperkube image. ([#34416](https://github.com/kubernetes/kubernetes/pull/34416), [@colemickens](https://github.com/colemickens))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
Back to top