Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for JvmMemoryStatusSnapshot (0.31 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatusSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.health.memory;
    
    public class JvmMemoryStatusSnapshot implements JvmMemoryStatus {
        private final long maximumMemory;
        private final long committedMemory;
    
        public JvmMemoryStatusSnapshot(long maximumMemory, long commitedMemory) {
            this.maximumMemory = maximumMemory;
            this.committedMemory = commitedMemory;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerJvmMemoryInfoSerializer.java

    import org.gradle.internal.serialize.Serializer;
    import org.gradle.internal.serialize.SerializerRegistry;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    import org.gradle.process.internal.health.memory.JvmMemoryStatusSnapshot;
    
    import java.io.EOFException;
    
    public class WorkerJvmMemoryInfoSerializer {
        public static SerializerRegistry create() {
            DefaultSerializerRegistry registry = new DefaultSerializerRegistry(false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultJvmMemoryInfo.java

            //querying runtime for each invocation
            return Runtime.getRuntime().totalMemory();
        }
    
        @Override
        public JvmMemoryStatus getJvmSnapshot() {
            return new JvmMemoryStatusSnapshot(getMaxMemory(), getCommittedMemory());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.process.internal.health.memory.JvmMemoryStatusSnapshot> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (JvmMemoryStatusSnapshot.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