Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,455 for ulong (0.05 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    // Because the registers are msan-undefined, the signal handler will
    // be invoked with all registers msan-undefined.
    __attribute__((noinline))
    void msanGoWait(unsigned long a1, unsigned long a2, unsigned long a3, unsigned long a4, unsigned long a5, unsigned long a6) {
    	sigset_t mask;
    
    	sigemptyset(&mask);
            sigsuspend(&mask);
    }
    
    // msanGoSignalThread is the thread ID of the msanGoLoop thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/DefaultFileAccessTimeJournal.java

        }
    
        @Override
        public void stop() {
            cache.close();
        }
    
        @Override
        public void setLastAccessTime(File file, long millis) {
            store.put(file, millis);
        }
    
        @Override
        public long getLastAccessTime(File file) {
            Long value = store.getIfPresent(file);
            if (value == null) {
                return Math.max(inceptionTimestamp, file.lastModified());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/OutputSpecification.groovy

            start(description: description)
        }
    
        ProgressStartEvent start(Long id) {
            start(id: id)
        }
    
        ProgressStartEvent start(Long id, String status) {
            start(id: id, status: status)
        }
    
        ProgressStartEvent start(Map args) {
            Long parentId = args.containsKey("parentId") ? args.parentId : null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionEvent.java

    public class GarbageCollectionEvent {
        private final long timestamp;
        private final MemoryUsage usage;
        private final long count;
    
        public GarbageCollectionEvent(long timestamp, MemoryUsage usage, long count) {
            this.timestamp = timestamp;
            this.usage = usage;
            this.count = count;
        }
    
        public long getTimestamp() {
            return timestamp;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatusSnapshot.java

    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;
        }
    
        @Override
        public long getMaxMemory() {
            return maximumMemory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/DefaultRuleActionValidatorTest.groovy

            ruleValidator.validate(Stub(RuleAction) {
                getInputTypes() >> { [ Long ] }
            })
    
            then:
            def failure = thrown(RuleActionValidationException)
            failure.message == "Rule may not have an input parameter of type: java.lang.Long. Second parameter must be of type: java.lang.Integer."
        }
    
        def "rejects invalid type when no type configured" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/ConnectionEvent.kt

      }
    
      data class ConnectionClosed(
        override val timestampNs: Long,
        override val connection: Connection,
      ) : ConnectionEvent()
    
      data class ConnectionAcquired(
        override val timestampNs: Long,
        override val connection: Connection,
        val call: Call,
      ) : ConnectionEvent()
    
      data class ConnectionReleased(
        override val timestampNs: Long,
        override val connection: Connection,
        val call: Call,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DetachedResolvedGraphDependency.java

        private final Long selected;
        private final ComponentSelectionReason reason;
        private final ModuleVersionResolveException failure;
        private final boolean constraint;
        private final Long fromVariant;
        private final Long targetVariant;
    
        public DetachedResolvedGraphDependency(ComponentSelector requested,
                                               Long selected,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/BinaryResultBackedTestResultsProvider.java

                }
            });
            return hasOutput[0];
        }
    
        @Override
        public boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
            return false;
        }
    
        @Override
        public void writeAllOutput(final long classId, final TestOutputEvent.Destination destination, final Writer writer) {
            withReader(new Action<TestOutputStore.Reader>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/DefaultTaskSkippedResult.java

        private final long startTime;
        private final long endTime;
        private final String skipMessage;
    
        public DefaultTaskSkippedResult(long startTime, long endTime, String skipMessage) {
            this.startTime = startTime;
            this.endTime = endTime;
            this.skipMessage = skipMessage;
        }
    
        @Override
        public long getStartTime() {
            return startTime;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top