Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 952 for v_size (0.17 sec)

  1. .idea/uiDesigner.xml

            <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
              <preferred-size width="150" height="-1" />
            </default-constraints>
          </item>
          <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
            <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
    XML
    - Registered: Fri Apr 12 08:18:09 GMT 2024
    - Last Modified: Thu Oct 24 15:06:04 GMT 2013
    - 9.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

        }
    
        static class TestSubSearcher extends RankFusionSearcher {
    
            private int mainSize;
            private int inSize;
            private int outSize;
    
            TestSubSearcher(int mainSize, int inSize, int outSize) {
                this.mainSize = mainSize;
                this.inSize = inSize;
                this.outSize = outSize;
            }
    
            @Override
    Java
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbCopyUtil.java

                    do {
                        long ooff = 0;
                        while ( ooff < size ) {
                            long wsize = size - ooff;
                            if ( wsize > byteLimit ) {
                                wsize = byteLimit;
                            }
    
                            int chunks = (int) ( wsize / maxChunkSize );
                            int lastChunkSize;
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  4. cmd/xl-storage-meta-inline.go

    // Payload size can give an indication of expected payload size.
    // If plSize is <= 0 it will be calculated.
    func (x *xlMetaInlineData) serialize(plSize int, keys [][]byte, vals [][]byte) {
    	if len(keys) != len(vals) {
    		panic(fmt.Errorf("xlMetaInlineData.serialize: keys/value number mismatch"))
    	}
    	if len(keys) == 0 {
    		*x = nil
    		return
    	}
    	if plSize <= 0 {
    		plSize = 1 + msgp.MapHeaderSize
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

                        + this.allocationSize + ",extFileAttributes=" + this.extFileAttributes + ",eaSize=" + this.eaSize + ",shortName=" + this.shortName
                        + ",filename=" + this.filename + "]");
        }
    
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  6. src/main/webapp/js/suggestor.js

                  }
                );
    
                this.resize();
                suggestor = this;
                $(window).resize(function() {
                  suggestor.resize();
                });
    
                $("body").append($boxElement);
              },
    
              suggest: function() {
                suggestingSts = true;
    
                this.resize();
    
                var suggestor = this;
    JavaScript
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 13.3K bytes
    - Viewed (2)
  7. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                    ",allocationSize=" + allocationSize +
                    ",extFileAttributes=" + extFileAttributes +
                    ",fileNameLength=" + fileNameLength +
                    ",eaSize=" + eaSize +
                    ",shortNameLength=" + shortNameLength +
                    ",shortName=" + shortName +
                    ",filename=" + filename + "]" );
            }
        }
    
        int sid;
        boolean isEndOfSearch;
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.5K bytes
    - Viewed (0)
  8. internal/disk/stat_netbsd.go

    	s := unix.Statvfs_t{}
    	if err = unix.Statvfs(path, &s); err != nil {
    		return Info{}, err
    	}
    	reservedBlocks := uint64(s.Bfree) - uint64(s.Bavail)
    	info = Info{
    		Total:  uint64(s.Frsize) * (uint64(s.Blocks) - reservedBlocks),
    		Free:   uint64(s.Frsize) * uint64(s.Bavail),
    		Files:  uint64(s.Files),
    		Ffree:  uint64(s.Ffree),
    		FSType: string(s.Fstypename[:]),
    	}
    	if info.Free > info.Total {
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

        if (read >= 0) content.resize(read);
        if (file_size != content.size())
          TF_SetStatus(
              status_, TF_DATA_LOSS,
              std::string("expected " + std::to_string(file_size) + " got " +
                          std::to_string(content.size()) + " bytes")
                  .c_str());
        return content;
      }
    
     protected:
      TF_Filesystem* filesystem_;
      TF_Status* status_;
    
     private:
    C++
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 12:04:23 GMT 2020
    - 24.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/posix/copy_file_linux.cc

        if (chunk > SSIZE_MAX) chunk = SSIZE_MAX;
    
        rc = sendfile(dst_fd, src_fd, &offset, static_cast<size_t>(chunk));
        if (rc < 0) return -1;
        bytes_transferred += rc;
      }
    
      return bytes_transferred;
    }
    
    C++
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Fri Nov 22 21:23:55 GMT 2019
    - 1.5K bytes
    - Viewed (0)
Back to top