Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 115 of 115 for writeInt8 (0.09 sec)

  1. android/guava/src/com/google/common/collect/CompactHashMap.java

          this.size = 0;
        }
      }
    
      @J2ktIncompatible
      private void writeObject(ObjectOutputStream stream) throws IOException {
        stream.defaultWriteObject();
        stream.writeInt(size());
        Iterator<Entry<K, V>> entryIterator = entrySetIterator();
        while (entryIterator.hasNext()) {
          Entry<K, V> e = entryIterator.next();
          stream.writeObject(e.getKey());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. cmd/site-replication-metrics_gen.go

    		return
    	}
    	for za0001, za0002 := range z.ErrCounts {
    		err = en.WriteString(za0001)
    		if err != nil {
    			err = msgp.WrapError(err, "ErrCounts")
    			return
    		}
    		err = en.WriteInt(za0002)
    		if err != nil {
    			err = msgp.WrapError(err, "ErrCounts", za0001)
    			return
    		}
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        @Override
        protected ConcurrentMap<K, V> delegate() {
          return delegate;
        }
    
        void writeMapTo(ObjectOutputStream out) throws IOException {
          out.writeInt(delegate.size());
          for (Entry<K, V> entry : delegate.entrySet()) {
            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        @Override
        protected ConcurrentMap<K, V> delegate() {
          return delegate;
        }
    
        void writeMapTo(ObjectOutputStream out) throws IOException {
          out.writeInt(delegate.size());
          for (Entry<K, V> entry : delegate.entrySet()) {
            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    				offset += 4
    			}
    			continue
    		}
    
    		offset := p.Pc
    		for _, ins := range instructionsForProg(p) {
    			if ic, err := ins.encode(); err == nil {
    				cursym.WriteInt(ctxt, offset, ins.length(), int64(ic))
    				offset += int64(ins.length())
    			}
    			if ins.usesRegTmp() {
    				p.Mark |= USES_REG_TMP
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top