Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sourceLocation (0.29 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. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

        /**
         * Move a file or directory on the actual file system atomically, and update the cached state without having to re-snapshot content in the new location.
         */
        void moveAtomically(String sourceLocation, String targetLocation) throws IOException;
    
        interface WriteListener {
            void locationsWritten(Iterable<String> locations);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/mdo/java/InputLocation.java

            Map<Object, InputLocation> locations;
            Map<Object, InputLocation> sourceLocations = source.locations;
            Map<Object, InputLocation> targetLocations = target.locations;
            if (sourceLocations == null) {
                locations = targetLocations;
            } else if (targetLocations == null) {
                locations = sourceLocations;
            } else {
                locations = new LinkedHashMap<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. 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