Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sourceLocation (0.13 sec)

  1. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

                                new ConstantExpression(sourceLocation.getExpression()),
                                new ConstantExpression(sourceLocation.getLineNumber()),
                                new ConstantExpression(sourceLocation.getColumnNumber())
                        )))));
                node.addMethod(new MethodNode("sourceLocation",
                                    Modifier.PUBLIC,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

        }
    
        @Override
        public void moveAtomically(String sourceLocation, String targetLocation) throws IOException {
            FileSystemLocationSnapshot sourceSnapshot = read(sourceLocation);
            write(ImmutableList.of(sourceLocation, targetLocation), () -> {
                Files.move(Paths.get(sourceLocation), Paths.get(targetLocation), ATOMIC_MOVE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top