Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getEstimatedArgumentHandlingCodeLength (0.42 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

            int argumentHandlingLength = 0;
            for (Type arg : arguments) {
                argumentHandlingLength += getEstimatedArgumentHandlingCodeLength(arg);
            }
            return nonArgumentCodeSize + argumentHandlingLength;
        }
    
        private static int getEstimatedArgumentHandlingCodeLength(Type argument) {
            int loadSize = 7;  // size of SerializedLambda.getCapturedArg(<n>) call
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top