Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for puts (0.14 sec)

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

                    }
                    ce.map.put(DC_ENTRY, NEGATIVE_ENTRY);
                    if ( tf.getConfig().isDfsStrictView() && ioe instanceof SmbAuthException ) {
                        throw (SmbAuthException) ioe;
                    }
                }
                ce.map.put(DC_ENTRY, NEGATIVE_ENTRY);
                this.dcCache.put(dom, ce);
                return null;
            }
    
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            for (int i = 1; key != null || value != null; i++) {
                List values = (List) map.get(key);
                if (values == null) {
                    values = new ArrayList();
                    map.put(key, values);
                }
                values.add(value);
                key = connection.getHeaderFieldKey(i);
                value = connection.getHeaderField(i);
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                }
                else {
                    curResp.setExpiration(null);
                }
    
                curResp.setMid(k);
                this.response_map.put(k, curResp);
    
                Request next = curReq.getNext();
                if ( next != null ) {
                    curReq = next;
                    curResp = next.getResponse();
                }
                else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type2Message.java

            byte[] ti = TARGET_INFO_CACHE.get(domain);
            if ( ti != null ) {
                return ti;
            }
    
            ti = makeTargetInfo(tc, domain);
            TARGET_INFO_CACHE.put(domain, ti);
            return ti;
        }
    
    
        /**
         * @param domain
         * @param domainLength
         * @param server
         * @return
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/AllTests.java

                    cfg.put("jcifs.smb.client.signingEnforced", "false");
                    return cfg;
                }
            });
    
            MUTATIONS.put("smb1-forceSigning", new TestMutation() {
    
                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
                    cfg.put("jcifs.smb.client.maxVersion", "SMB1");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SIDCacheImpl.java

                    SID[] resolved = list.toArray(new SID[list.size()]);
                    resolveSids0(authorityServerName, tc, resolved);
                    for ( si = 0; si < resolved.length; si++ ) {
                        this.sidCache.put(resolved[ si ], resolved[ si ]);
                    }
                }
            }
        }
    
    
        /**
         * Resolve an array of SIDs using a cache and at most one MSRPC request.
         * <p>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            InetAddress localInetAddress;
            String localHostname;
            Name localName;
    
            /* Create an address to represent failed lookups and cache forever.
             */
    
            ADDRESS_CACHE.put( UNKNOWN_NAME, new CacheEntry( UNKNOWN_NAME, UNKNOWN_ADDRESS, FOREVER ));
    
            /* Determine the InetAddress of the local interface
             * if one was not specified.
             */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/config/BaseConfiguration.java

        private static final Logger log = LoggerFactory.getLogger(BaseConfiguration.class);
        private static final Map<String, Integer> DEFAULT_BATCH_LIMITS = new HashMap<>();
    
        static {
            DEFAULT_BATCH_LIMITS.put("TreeConnectAndX.QueryInformation", 0);
        }
    
        private final Map<String, Integer> batchLimits = new HashMap<>();
    
        protected int localPid = -1;
        protected TimeZone localTimeZone;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  9. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

         *
         * @see jcifs.internal.dfs.DfsReferralDataInternal#replaceCache()
         */
        @Override
        public void replaceCache () {
            if ( this.map != null && this.key != null ) {
                this.map.put(this.key, this);
            }
        }
    
    
        @Override
        public DfsReferralDataImpl next () {
            return this.next;
        }
    
    
        /**
         * 
         * @param dr
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/ContextConfigTest.java

        @Test
        // #324
        public void testDefaultCredentials() throws CIFSException
        {
            Properties props = new Properties();
            props.put("jcifs.smb.client.domain", "my-domain");
            props.put("jcifs.smb.client.username", "my-default-user-id");
            props.put("jcifs.smb.client.password", "my-default-password");
    
            CIFSContext auth = new BaseContext(new PropertyConfiguration(props));
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 9.9K bytes
    - Viewed (0)
Back to top