Toggle navigation
Home
java.lang.String to org.apache.ignite.lang.IgniteUuid
No. of Instances - 3
No. of Commits - 1
No. of Projects - {'ignite'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Cascading Type Change (Different)
CacheEntry<Integer,Map<Integer,Double>>
to
CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>>
CacheEntry<Integer,Map<Integer,Double>>
to
CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>>
CacheEntry<Integer,Map<Integer,Double>>
to
CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>>
Add or Remove Method invocation
fold(cacheName,(CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> ce,Double acc) -> { Map<Integer,Double> map=ce.entry().getValue(); double max=Collections.max(map.values()); if (acc == null) return max; else return Math.max(acc,max); } )
to
fold(SparseDistributedMatrixStorage.ML_CACHE_NAME,(CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> ce,Double acc) -> { Cache.Entry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> entry=ce.entry(); if (entry.getKey().get2().equals(matrixUuid)) { Map<Integer,Double> map=entry.getValue(); double max=Collections.max(map.values()); if (acc == null) return max; else return Math.max(acc,max); } else return acc; } ,key -> key.get2().equals(matrixUuid))
fold(cacheName,(CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> ce,Double acc) -> { Map<Integer,Double> map=ce.entry().getValue(); double sum=sum(map.values()); return acc == null ? sum : acc + sum; } )
to
fold(SparseDistributedMatrixStorage.ML_CACHE_NAME,(CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> ce,Double acc) -> { Cache.Entry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> entry=ce.entry(); if (entry.getKey().get2().equals(matrixUuid)) { Map<Integer,Double> map=entry.getValue(); double sum=sum(map.values()); return acc == null ? sum : acc + sum; } else return acc; } ,key -> key.get2().equals(matrixUuid))
fold(cacheName,(CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> ce,Double acc) -> { Map<Integer,Double> map=ce.entry().getValue(); double min=Collections.min(map.values()); if (acc == null) return min; else return Math.min(acc,min); } )
to
fold(SparseDistributedMatrixStorage.ML_CACHE_NAME,(CacheEntry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> ce,Double acc) -> { Cache.Entry<IgniteBiTuple<Integer,IgniteUuid>,Map<Integer,Double>> entry=ce.entry(); if (entry.getKey().get2().equals(matrixUuid)) { Map<Integer,Double> map=entry.getValue(); double min=Collections.min(map.values()); if (acc == null) return min; else return Math.min(acc,min); } else return acc; } ,key -> key.get2().equals(matrixUuid))
Rename Variable
cacheName
to
matrixUuid
cacheName
to
matrixUuid
cacheName
to
matrixUuid