Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for attempted (0.18 sec)

  1. src/main/java/jcifs/smb1/smb1/Dfs.java

                                     * SmbFile.resolveDfs can re-insert the dr list with
                                     * the dr that was successful so that subsequent
                                     * attempts to resolve DFS use the last successful
                                     * referral first.
                                     */
                                    tmp.map = links.map;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * the security descriptor associated with this file or directory.
     * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
     * @param resolveSids Attempt to resolve the SIDs within each ACE form
     * their numeric representation to their corresponding account names.
     */
        public ACE[] getSecurity(boolean resolveSids) throws IOException {
            int f;
    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)
  3. .github/workflows/codeql-analysis.yml

            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v1
    
    Others
    - Registered: Fri Mar 01 20:58:10 GMT 2024
    - Last Modified: Wed Jan 19 23:41:02 GMT 2022
    - 2.5K bytes
    - Viewed (1)
  4. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                            this.lmHash = a.getAnsiHash(tc, server.encryptionKey);
                            this.ntHash = a.getUnicodeHash(tc, server.encryptionKey);
                            // prohibit HTTP auth attempts for the null session
                            if ( this.lmHash.length == 0 && this.ntHash.length == 0 ) {
                                throw new RuntimeException("Null setup prohibited.");
                            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 17 10:20:23 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SIDCacheImpl.java

                    }
                }
            }
        }
    
    
        /**
         * Resolve an array of SIDs using a cache and at most one MSRPC request.
         * <p>
         * This method will attempt
         * to resolve SIDs using a cache and cache the results of any SIDs that
         * required resolving with the authority. SID cache entries are currently not
    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)
  6. src/main/java/jcifs/smb/SmbTreeConnection.java

                    last = e;
                }
            }
    
            if ( last != null ) {
                log.debug("All attempts have failed, last exception", last);
                throw last;
            }
            throw new SmbException("All attempts failed, but no exception");
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  7. .github/workflows/codeql-analysis.yml

            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v1
    
    Others
    - Registered: Thu May 02 15:34:13 GMT 2024
    - Last Modified: Fri Oct 02 13:24:14 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v1
    
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Oct 02 13:22:07 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SidResolver.java

     * 
     * @author mbechler
     * @internal
     */
    public interface SidResolver {
    
        /**
         * Resolve an array of SIDs using a cache and at most one MSRPC request.
         * <p>
         * This method will attempt
         * to resolve SIDs using a cache and cache the results of any SIDs that
         * required resolving with the authority. SID cache entries are currently not
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                    }
                    ex = e;
                }
            }
    
            if ( ex != null ) {
                throw ex;
            }
            throw new TransportException("All connection attempts failed");
        }
    
    
        /**
         * 
         * @param trans
         * @return whether (non-exclusive) connection is in the pool
         */
        public boolean contains ( SmbTransport trans ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
Back to top