Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 5,028 for ulong (0.03 sec)

  1. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistryTest.groovy

            given:
            def registry = new DefaultSerializerRegistry()
            registry.register(Long, longSerializer)
            registry.register(Integer, intSerializer)
            registry.useJavaSerialization(StringBuilder)
    
            expect:
            registry.canSerialize(Long)
            registry.canSerialize(Number)
            registry.canSerialize(Object)
            !registry.canSerialize(BigDecimal)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultStatusEvent.java

    public class DefaultStatusEvent extends AbstractProgressEvent<DefaultFileDownloadDescriptor> implements InternalStatusEvent {
        private final long progress;
        private final long total;
        private final String units;
    
        public DefaultStatusEvent(long eventTime, DefaultFileDownloadDescriptor descriptor, long progress, long total, String units) {
            super(eventTime, descriptor);
            this.progress = progress;
            this.total = total;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 21 23:09:50 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfo.java

        }
    
        private static class Meminfo {
            private long total = -1;
            private long available = -1;
            private long free = -1;
            private long buffers = -1;
            private long cached = -1;
            private long reclaimable = -1;
            private long mapped = -1;
    
            public long getTotal() {
                return total;
            }
    
            /*
             * Linux 4.x: MemAvailable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

          public long getLongLittleEndian(byte[] array, int offset) {
            long bigEndian = theUnsafe.getLong(array, (long) offset + BYTE_ARRAY_BASE_OFFSET);
            // The hardware is big-endian, so we need to reverse the order of the bytes.
            return Long.reverseBytes(bigEndian);
          }
    
          @Override
          public void putLongLittleEndian(byte[] array, int offset, long value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ListeningScheduledExecutorService.java

      }
    
      /** @since 15.0 (previously returned ScheduledFuture) */
      @Override
      ListenableScheduledFuture<?> scheduleAtFixedRate(
          Runnable command, long initialDelay, long period, TimeUnit unit);
    
      /**
       * Duration-based overload of {@link #scheduleAtFixedRate(Runnable, long, long, TimeUnit)}.
       *
       * @since 29.0
       */
      default ListenableScheduledFuture<?> scheduleAtFixedRate(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/DocList.java

    public class DocList extends ArrayList<Map<String, Object>> {
    
        private static final long serialVersionUID = 1L;
    
        private long contentSize = 0;
    
        private long processingTime = 0;
    
        @Override
        public void clear() {
            super.clear();
            contentSize = 0;
            processingTime = 0;
        }
    
        public long getContentSize() {
            return contentSize;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/debug/dwarf/testdata/typedef.c

    typedef struct my_struct {
    	volatile int vi;
    	char x : 1;
    	int y : 4;
    	int z[0];
    	long long array[40];
    	int zz[0];
    } t_my_struct;
    typedef struct my_struct1 {
    	int zz [1];
    } t_my_struct1;
    typedef union my_union {
    	volatile int vi;
    	char x : 1;
    	int y : 4;
    	long long array[40];
    } t_my_union;
    typedef enum my_enum {
    	e1 = 1,
    	e2 = 2,
    	e3 = -5,
    	e4 = 1000000000000000LL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

                long hierarchyCount = this.hierarchyCount.getAndSet(0);
                long directoryCount = this.directoryCount.getAndSet(0);
                long fileCount = this.fileCount.getAndSet(0);
                long failedFileCount = this.failedFileCount.getAndSet(0);
    
                return new DirectorySnapshotterStatistics() {
                    @Override
                    public long getVisitedHierarchyCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/DefaultStatusEvent.java

     */
    public class DefaultStatusEvent extends BaseProgressEvent implements StatusEvent {
    
        private final long total;
        private final long progress;
        private final String unit;
    
        public DefaultStatusEvent(long eventTime, OperationDescriptor descriptor, long total, long progress, String unit) {
            super(eventTime, descriptor.getDisplayName(), descriptor);
            this.total = total;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            rule.subjectBinding.boundTo == node2
        }
    
        def "can replace by-type subject when bound"() {
            def node1 = node("a", Long)
            def node2 = node("a", Long)
            def rule1 = rule(Long, ModelNode.State.Finalized)
            def rule2 = rule(Long, ModelNode.State.Finalized)
    
            when:
            bindings.add(rule1)
            addNode(node1)
            bindings.add(rule2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top