Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for fientry (0.14 sec)

  1. src/testing/fstest/testfs.go

    		return
    	}
    	fentry := formatEntry(entry)
    	fientry := formatInfoEntry(info)
    	// Note: mismatch here is OK for symlink, because Open dereferences symlink.
    	if fentry != fientry && entry.Type()&fs.ModeSymlink == 0 {
    		t.errorf("%s: mismatch:\n\tentry = %s\n\tfile.Stat() = %s", path, fentry, fientry)
    	}
    
    	einfo, err := entry.Info()
    	if err != nil {
    		t.errorf("%s: entry.Info: %w", path, err)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/FileEntry.java

    package jcifs.smb1.smb1;
    
    public interface FileEntry {
    
        String getName();
        int getType();
        int getAttributes();
        long createTime();
        long lastModified();
        long length();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 191 bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/FileEntry.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.smb;
    
    
    /**
     * 
     * 
     *
     */
    public interface FileEntry {
    
        /**
         * 
         * @return the file name
         */
        String getName ();
    
    
        /**
         * 
         * @return the file type
         */
        int getType ();
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. internal/logger/message/audit/entry.go

    	entry := NewEntry(deploymentID)
    
    	entry.RemoteHost = handlers.GetSourceIP(r)
    	entry.UserAgent = r.UserAgent()
    	entry.ReqClaims = reqClaims
    	entry.ReqHost = r.Host
    	entry.ReqPath = r.URL.Path
    
    	q := r.URL.Query()
    	reqQuery := make(map[string]string, len(q))
    	for k, v := range q {
    		reqQuery[k] = strings.Join(v, ",")
    	}
    	entry.ReqQuery = reqQuery
    
    	reqHeader := make(map[string]string, len(r.Header))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

            }
    
            static class FileEntry extends Entry {
    
                private final String hash;
    
                FileEntry(String path, String hash) {
                    super(path);
                    this.hash = hash;
                }
    
                public String getHash() {
                    return hash;
                }
            }
    
            static class DirEntry extends Entry {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

    import java.io.InputStream;
    
    public interface ZipEntry {
        /**
         * The compression method used for an entry
         */
        enum ZipCompressionMethod {
            /**
             * The entry is compressed with DEFLATE algorithm.
             */
            DEFLATED,
    
            /**
             * The entry is stored uncompressed.
             */
            STORED,
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/debug/dwarf/entry.go

    	case formRnglistx:
    		return ClassRngList
    	}
    }
    
    // An entry is a sequence of attribute/value pairs.
    type Entry struct {
    	Offset   Offset // offset of Entry in DWARF info
    	Tag      Tag    // tag (kind of Entry)
    	Children bool   // whether Entry is followed by children
    	Field    []Field
    }
    
    // A Field is a single attribute/value pair in an [Entry].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/HashBiMap.java

            entry != null;
            entry = entry.nextInKToVBucket) {
          if (keyHash == entry.keyHash && Objects.equal(key, entry.key)) {
            return entry;
          }
        }
        return null;
      }
    
      @CheckForNull
      private BiEntry<K, V> seekByValue(@CheckForNull Object value, int valueHash) {
        for (BiEntry<K, V> entry = hashTableVToK[valueHash & mask];
            entry != null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/HashBiMap.java

        removeEntry(entry, keyHash, Hashing.smearedHash(values[entry]));
      }
    
      /** Removes the entry at the specified index, given the hash of its value. */
      void removeEntryValueHashKnown(int entry, int valueHash) {
        removeEntry(entry, Hashing.smearedHash(keys[entry]), valueHash);
      }
    
      /**
       * Moves the entry previously positioned at {@code src} to {@code dest}. Assumes the entry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

                log.error("Failed to apply name filter", e);
                return false;
            }
        }
    
    
        protected final FileEntry advance ( boolean last ) throws CIFSException {
            FileEntry[] results = getResults();
            while ( this.ridx < results.length ) {
                FileEntry itm = results[ this.ridx ];
                this.ridx++;
                if ( filter(itm) ) {
                    return itm;
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.8K bytes
    - Viewed (0)
Back to top