Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bySize (0.2 sec)

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

            }
        }
    
    
        void copyRecursive ( SmbFile dest, byte[][] b, int bsize, WriterThread w, SmbTreeHandleImpl sh, SmbTreeHandleImpl dh ) throws CIFSException {
            if ( isDirectory() ) {
                SmbCopyUtil.copyDir(this, dest, b, bsize, w, sh, dh);
            }
            else {
                SmbCopyUtil.copyFile(this, dest, b, bsize, w, sh, dh);
            }
    
            dest.clearAttributeCache();
        }
    
    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/math/big/int_test.go

    		}
    		b.Run(fmt.Sprintf("%d", n), func(b *testing.B) {
    			benchmarkIntSqr(b, n)
    		})
    	}
    }
    
    func benchmarkDiv(b *testing.B, aSize, bSize int) {
    	var r = rand.New(rand.NewSource(1234))
    	aa := randInt(r, uint(aSize))
    	bb := randInt(r, uint(bSize))
    	if aa.Cmp(bb) < 0 {
    		aa, bb = bb, aa
    	}
    	x := new(Int)
    	y := new(Int)
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top