Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for queryPath (0.1 sec)

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

         */
        protected void customizeCreate ( SmbComNTCreateAndX request, SmbComNTCreateAndXResponse response ) {}
    
    
        SmbBasicFileInfo queryPath ( SmbTreeHandleImpl th, String path, int infoLevel ) throws CIFSException {
            if ( log.isDebugEnabled() ) {
                log.debug("queryPath: " + path);
            }
    
            /*
             * We really should do the referral before this in case
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    }
                    type = TYPE_SERVER;
                }
            }
            return false;
        }
    
        Info queryPath( String path, int infoLevel ) throws SmbException {
            connect0();
    
            if (log.level >= 3)
                log.println( "queryPath: " + path );
    
            /* normally we'd check the negotiatedCapabilities for CAP_NT_SMBS
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    // is itself q.pattern (at a matching version).
    func (r *resolver) queryPath(ctx context.Context, q *query) {
    	q.pathOnce(q.pattern, func() pathSet {
    		if search.IsMetaPackage(q.pattern) || q.isWildcard() {
    			panic(fmt.Sprintf("internal error: queryPath called with pattern %q", q.pattern))
    		}
    		if q.version == "none" {
    			panic(`internal error: queryPath called with version "none"`)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top