Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for getPred (0.2 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package contains tests that should be geared towards general functionality of the
     * JUnit Platform and may or may not be specific to an engine.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 821 bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/integTest/groovy/org/gradle/process/internal/health/memory/DefaultOsMemoryInfoIntegrationTest.groovy

            then:
            notThrown UnsupportedOperationException
        }
    
        def "gets OS free memory on any system"() {
            when:
            new DefaultOsMemoryInfo().getOsSnapshot().getPhysicalMemory().getFree()
    
            then:
            notThrown UnsupportedOperationException
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "gets OS virtual memory on a Windows system"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StringConfigurationAttributesResolveIntegrationTest.groovy

                       }
                   }
                }
            '''
        }
    
        @Override
        String getDebug() {
            "attribute(buildType, 'debug')"
        }
    
        @Override
        String getFree() {
            "attribute(flavor, 'free')"
        }
    
        @Override
        String getRelease() {
            "attribute(buildType, 'release')"
        }
    
        @Override
        String getPaid() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultAvailableOsMemoryStatusAspect.java

        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public long getTotal() {
            return total;
        }
    
        @Override
        public long getFree() {
            return free;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusAspect.java

             */
            long getTotal();
    
            /**
             * Get the free memory of this category in bytes.
             *
             * @return the free memory of this category in bytes
             */
            long getFree();
        }
    
        /**
         * Marker interface for unavailable memory information.
         *
         * <p>
         * This is used when a specific memory category is not available on the current platform.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractUserClassFilePermissions.java

         * See {@link ConfigurableFilePermissions#unix(String)} for details,
         * returned value is equivalent to one of the three octal digits.
         */
        protected int toUnixNumeric() {
            return (getRead() ? 4 : 0) + (getWrite() ? 2 : 0) + (getExecute() ? 1 : 0);
        }
    
        protected static boolean isRead(int unixNumeric) {
            return (unixNumeric & 4) >> 2 == 1;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top