Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,266 for getBase (0.14 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/diagnostics/DaemonDiagnostics.java

                return "Unable to read from the daemon log file: " + getDaemonLog().getAbsolutePath() + ", because of: " + e.getCause();
            }
        }
    
        private String formatTail(String tail) {
            return "----- Last  " + TAIL_SIZE + " lines from daemon log file - " + getDaemonLog().getName() + " -----\n"
                + tail
                + "----- End of the daemon log -----\n";
        }
    
        public String describe() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

         */
        Comparator<FileSystemLocationSnapshot> BY_NAME = Comparator.comparing(FileSystemLocationSnapshot::getName, PathUtil::compareFileNames);
    
        /**
         * The file name.
         */
        String getName();
    
        /**
         * The absolute path of the file.
         */
        String getAbsolutePath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

                try {
                    if (ZipHasher.isZipFile(fileSnapshotContext.getSnapshot().getName())) {
                        return cacheService.hashFile(fileSnapshotContext, zipHasher, zipHasherConfigurationHash);
                    } else if (relativePath.isRoot()) {
                        return nonZipFingerprintingStrategy.determineNonJarFingerprint(fileSnapshot.getHash());
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MissingFileSnapshot.java

        }
    
        @Override
        public FileType getType() {
            return FileType.Missing;
        }
    
        @Override
        public HashCode getHash() {
            return SIGNATURE;
        }
    
        @Override
        public boolean isContentAndMetadataUpToDate(FileSystemLocationSnapshot other) {
            return isContentUpToDate(other);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/DefaultResourceSnapshotterCacheService.java

    import java.io.IOException;
    
    public class DefaultResourceSnapshotterCacheService implements ResourceSnapshotterCacheService {
        private static final HashCode NO_HASH = Hashing.signature(CachingResourceHasher.class.getName() + " : no hash");
        private final IndexedCache<HashCode, HashCode> indexedCache;
    
        public DefaultResourceSnapshotterCacheService(IndexedCache<HashCode, HashCode> indexedCache) {
            this.indexedCache = indexedCache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 13:47:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

                    if ("org.eclipse.sisu.Typed".equals(annotationType.getName())
                            || "javax.enterprise.inject.Typed".equals(annotationType.getName())
                            || "jakarta.enterprise.inject.Typed".equals(annotationType.getName())) {
                        try {
                            Class<?>[] value =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatter.java

                    builder.append(" more");
                    builder.append('\n');
                }
            }
    
            if (testLogging.getShowCauses() && exception.getCause() != null) {
                printException(descriptor, exception.getCause(), stackTrace, exceptionLevel + 1, builder);
            }
        }
    
        private List<StackTraceElement> filterStackTrace(Throwable exception, TestDescriptor descriptor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/FailOnVersionConflictGraphVisitor.java

                if (description.getCause().equals(ComponentSelectionCause.CONFLICT_RESOLUTION)) {
                    conflictDescription = description.getDescription();
                }
            }
            assert conflictDescription != null;
            return owner.getGroup() + ":" + owner.getName() + " " + conflictDescription;
        }
    
        public Set<Conflict> getAllConflicts() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/publish/ImmutablePublishArtifact.java

            this.file = file;
        }
    
        @Override
        public TaskDependency getBuildDependencies() {
            return TaskDependencyInternal.EMPTY;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public String getExtension() {
            return extension;
        }
    
        @Override
        public String getType() {
            return type;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 14 07:19:07 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/JavaMethod.java

            } catch (InvocationTargetException e) {
                throw UncheckedException.throwAsUncheckedException(e.getCause());
            } catch (Exception e) {
                throw new GradleException(String.format("Could not call %s.%s() on %s", method.getDeclaringClass().getSimpleName(), method.getName(), target), e);
            }
        }
    
        public Method getMethod() {
            return method;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 11:07:38 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top