Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for getPred (0.29 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FilteredFileTree.java

            formatter.node("backing tree");
            formatter.startChildren();
            tree.describeContents(formatter);
            formatter.endChildren();
        }
    
        public FileTreeInternal getTree() {
            return tree;
        }
    
        /**
         * The current set of patterns. Both the instance and the patterns it contains can change over time.
         */
        public PatternSet getPatterns() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonExpirationIntegrationTest.groovy

                            public void onOsMemoryStatus(OsMemoryStatus osMemoryStatus) {
                                freeMemory = osMemoryStatus.getPhysicalMemory().getFree()
                                latch.countDown()
                            }
                        })
                        latch.await()
    
                        // Force worker daemon expiration to occur
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

         * Describes if a certain class of users has read access to a file or directory.
         * <p>
         * Read access is the capability to view the contents of a file, or to list the contents of a directory.
         */
        boolean getRead();
    
        /**
         * Describes if a certain class of users has write access to a file or directory.
         * <p>
         * Write access is the capability to modify or remove the contents of a file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FilteredMinimalFileTree.java

            this.patterns = patterns;
            this.tree = tree;
        }
    
        @Override
        public String getDisplayName() {
            return tree.getDisplayName();
        }
    
        public FileSystemMirroringFileTree getTree() {
            return tree;
        }
    
        public PatternSet getPatterns() {
            return patterns;
        }
    
        @Override
        public DirectoryFileTree getMirror() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStats.java

        }
    
        private static long calculateAverageUsage(Collection<GarbageCollectionEvent> events) {
            long sum = 0;
            for (GarbageCollectionEvent event : events) {
                sum += event.getUsage().getUsed();
            }
            return sum / events.size();
        }
    
        private static long findMaxSize(Collection<GarbageCollectionEvent> events) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FileTreeAdapter.java

        }
    
        @Override
        public Set<File> getFiles() {
            listener.fileCollectionObserved(this);
            return super.getFiles();
        }
    
        public MinimalFileTree getTree() {
            return tree;
        }
    
        @Override
        public String getDisplayName() {
            return tree.getDisplayName();
        }
    
        @Override
        protected void appendContents(TreeFormatter formatter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

            return DaemonExpirationResult.NOT_TRIGGERED;
    
        }
    
        @Nullable
        private DaemonExpirationResult checkExpiry(OsMemoryStatusAspect.Available memory, long memoryThresholdInBytes) {
            long freeMem = memory.getFree();
            if (freeMem < memoryThresholdInBytes) {
                LOGGER.info("after free system {} memory ({}) fell below threshold of {}", memory.getName(), NumberUtil.formatBytes(freeMem), NumberUtil.formatBytes(memoryThresholdInBytes));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

                return changedTo(versions.get(versions.lastKey()) + 1, minGradleVersion);
            }
    
            /**
             * Specify the Gradle version where this cache directory was retired.
             * For this and any newer Gradle version, the cache directory is unused.
             * This is indicated by setting the current cache version to Integer.MAX_VALUE (so it cannot be further incremented).
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/DirectInstantiator.java

    /**
     * You should use the methods of {@link org.gradle.api.internal.InstantiatorFactory} instead of this type, as it will give better error reporting, more consistent behaviour and better performance.
     * This type will be retired in favor of {@link org.gradle.api.internal.InstantiatorFactory} at some point. Currently it is too tangled with a few things to just remove.
     */
    public class DirectInstantiator implements Instantiator {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarFileTreeTest.java

            rootDir.tarTo(file);
        }
    
        @Override
        protected TestFile getArchiveFile() {
            return archiveFile;
        }
    
        @Override
        protected TarFileTree getTree() {
            return tree;
        }
    
        @Test
        public void readsGzippedTarFile() {
            TestFile tgz = tempDirProvider.getTestDirectory().file("test.tgz");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top