Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for putNat (0.1 sec)

  1. android/guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

            for (Hasher hasher : hashers) {
              hasher.putShort(s);
            }
            return this;
          }
    
          @Override
          public Hasher putInt(int i) {
            for (Hasher hasher : hashers) {
              hasher.putInt(i);
            }
            return this;
          }
    
          @Override
          public Hasher putLong(long l) {
            for (Hasher hasher : hashers) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

        return delegate().remainingCapacity();
      }
    
      @Override
      public void putFirst(E e) throws InterruptedException {
        delegate().putFirst(e);
      }
    
      @Override
      public void putLast(E e) throws InterruptedException {
        delegate().putLast(e);
      }
    
      @Override
      public boolean offerFirst(E e, long timeout, TimeUnit unit) throws InterruptedException {
        return delegate().offerFirst(e, timeout, unit);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Hasher.java

      Hasher putBytes(ByteBuffer bytes);
    
      @CanIgnoreReturnValue
      @Override
      Hasher putShort(short s);
    
      @CanIgnoreReturnValue
      @Override
      Hasher putInt(int i);
    
      @CanIgnoreReturnValue
      @Override
      Hasher putLong(long l);
    
      /** Equivalent to {@code putInt(Float.floatToRawIntBits(f))}. */
      @CanIgnoreReturnValue
      @Override
      Hasher putFloat(float f);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/AbstractHasher.java

      @CanIgnoreReturnValue
      public final Hasher putDouble(double d) {
        return putLong(Double.doubleToRawLongBits(d));
      }
    
      @Override
      @CanIgnoreReturnValue
      public final Hasher putFloat(float f) {
        return putInt(Float.floatToRawIntBits(f));
      }
    
      @Override
      @CanIgnoreReturnValue
      public Hasher putUnencodedChars(CharSequence charSequence) {
        for (int i = 0, len = charSequence.length(); i < len; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. test/fixedbugs/bug020.go

    // compile
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var digits string;
    
    func putint(buf []byte, i, base, val int, digits string) {
    		buf[i] = digits[val];
    }
    
    func main() {
    }
    
    /*
    uetli:~/Source/go1/test gri$ 6g bugs/bug020.go
    bugs/bug020.go:7: type of a structure field cannot be an open array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 486 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/AbstractByteHasher.java

      @CanIgnoreReturnValue
      public Hasher putShort(short s) {
        scratch.putShort(s);
        return update(Shorts.BYTES);
      }
    
      @Override
      @CanIgnoreReturnValue
      public Hasher putInt(int i) {
        scratch.putInt(i);
        return update(Ints.BYTES);
      }
    
      @Override
      @CanIgnoreReturnValue
      public Hasher putLong(long l) {
        scratch.putLong(l);
        return update(Longs.BYTES);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    	flag.Parse()
    	os.Exit(m.Run())
    
    }
    
    // TestPutVarAbbrevGenerator checks that putvarabbrevgen.go is kept in sync
    // with the contents of functions putvar and putAbstractVar. If test flag -generate
    // is specified the file is regenerated instead.
    //
    // The block of code in putvar and putAbstractVar that picks the correct
    // abbrev is also generated automatically by this function by looking at all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractMapSnapshot.java

        }
    
        public ImmutableList<MapEntrySnapshot<T>> getEntries() {
            return entries;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString("Map");
            hasher.putInt(entries.size());
            for (MapEntrySnapshot<T> entry : entries) {
                entry.getKey().appendToHasher(hasher);
                entry.getValue().appendToHasher(hasher);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IntegerValueSnapshot.java

        public IntegerValueSnapshot(Integer value) {
            super(value);
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putInt(getValue());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 968 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

            Hasher hasher = Hashing.defaultFunction().newHasher();
            hasher.putInt(CACHE_FORMAT);
            hasher.putInt(AsmConstants.MAX_SUPPORTED_JAVA_VERSION);
            gradleCoreInstrumentationTypeRegistry.getInstrumentedTypesHash().ifPresent(hasher::putHash);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top