Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getGroovyExpression (0.19 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyRead.groovy

                @Override
                String getJavaExpression() {
                    return "(String)System.getProperties().get(\"$name\")"
                }
    
                @Override
                String getGroovyExpression() {
                    return "System.properties[\"$name\"]"
                }
    
                @Override
                String getKotlinExpression() {
                    return "System.getProperties()[\"$name\"]"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                this.checkKind = checkKind
            }
    
            @Override
            String getKotlinExpression() {
                "File(\"${filePath}\").$checkKind()"
            }
    
            @Override
            String getGroovyExpression() {
                "new File(\"${filePath}\").$checkKind()"
            }
    
            @Override
            String getJavaExpression() {
                "new File(\"${filePath}\").$checkKind()"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/BuildInputRead.groovy

        List<String> requiredImports() {
            Collections.emptyList()
        }
    
        String getJavaExpression() {
            return getKotlinExpression()
        }
    
        String getGroovyExpression() {
            return getKotlinExpression()
        }
    
        @Override
        String toString() {
            return getJavaExpression()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top