Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 538 for u_size (0.17 sec)

  1. 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 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.6K bytes
    - Viewed (0)
  2. 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 21 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/FileOperationsTest.java

                        }
                    }
                    finally {
                        d1.delete();
                    }
                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        // #173
        @Test
        public void testCopyTargetExists () throws IOException {
            int bufSize = 65536;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:17:59 GMT 2023
    - 16.3K 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 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/RandomAccessFileTest.java

                try {
                    int bufSize = 64 * 1024 + 512;
                    int l = bufSize;
                    try ( SmbRandomAccess raf = f.openRandomAccess("rw") ) {
                        writeRandom(bufSize, l, raf);
                    }
    
                    try ( SmbRandomAccess raf = f.openRandomAccess("rw") ) {
                        verifyRandom(bufSize, l, raf);
                    }
                }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/ReadWriteTest.java

        }
    
    
        static void verifyRandom ( int bufSize, long length, InputStream is ) throws IOException {
            verifyRandom(bufSize, length, true, is);
        }
    
    
        static void verifyRandom ( int bufSize, long length, boolean expectEof, InputStream is ) throws IOException {
            long start = System.currentTimeMillis();
            byte buffer[] = new byte[bufSize];
            long p = 0;
            Random r = getRandom();
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13.2K bytes
    - Viewed (0)
  7. 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 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  8. .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 19 08:18:09 GMT 2024
    - Last Modified: Thu Oct 24 15:06:04 GMT 2013
    - 9.5K bytes
    - Viewed (0)
  9. src/bufio/bufio_test.go

    	}
    
    	if got, want := rfw.writeBytes, bufsize; got != want {
    		t.Errorf("wrote %v bytes with Write, want %v", got, want)
    	}
    	if got, want := rfw.readFromBytes, len(input)-bufsize; got != want {
    		t.Errorf("wrote %v bytes with ReadFrom, want %v", got, want)
    	}
    }
    
    func TestReadZero(t *testing.T) {
    	for _, size := range []int{100, 2} {
    		t.Run(fmt.Sprintf("bufsize=%d", size), func(t *testing.T) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  10. 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 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 13.3K bytes
    - Viewed (2)
Back to top