Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sourceLocation (0.5 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)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.model.dsl.internal.transform.SourceLocation> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SourceLocation.java:0)
    Class <org.gradle.model.dsl.internal.transform.TransformedClosure> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TransformedClosure.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top