Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 203 for Serializer (0.08 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

    1. try {
    2. resultData.setData(SerializeUtil.fromObjectToBinary(generateData(responseData)));
    3. } catch (final Exception e) {
    4. throw new CrawlingAccessException("Could not serialize object", e);
    5. }
    6. resultData.setEncoding(fessConfig.getCrawlerCrawlingDataEncoding());
    7.  
    8. return resultData;
    9. }
    10.  
    11. protected Map<String, Object> generateData(final ResponseData responseData) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

    1. * optimizing, because the rest have the option of calling `trimmed`.
    2. */
    3.  
    4. private final transient int start; // it happens that we only serialize instances where this is 0
    5. private final int end; // exclusive
    6.  
    7. private ImmutableLongArray(long[] array) {
    8. this(array, 0, array.length);
    9. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/ImmutableIntArray.java

    1. * optimizing, because the rest have the option of calling `trimmed`.
    2. */
    3.  
    4. private final transient int start; // it happens that we only serialize instances where this is 0
    5. private final int end; // exclusive
    6.  
    7. private ImmutableIntArray(int[] array) {
    8. this(array, 0, array.length);
    9. }
    10.  
    11. private ImmutableIntArray(int[] array, int start, int end) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableBiMap.java

    1. @Override
    2. @DoNotCall("Always throws UnsupportedOperationException")
    3. @CheckForNull
    4. public final V forcePut(K key, V value) {
    5. throw new UnsupportedOperationException();
    6. }
    7.  
    8. /**
    9. * Serialized type for all ImmutableBiMap instances. It captures the logical contents and they are
    10. * reconstructed using public factory methods. This ensures that the implementation types remain
    11. * as implementation details.
    12. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. docs/bucket/replication/DESIGN.md

    1. ### Existing object replication
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  6. cmd/xl-storage-format_test.go

    1. xl.AddVersion(fi)
    2. }
    3. // Encode all. This is used for benchmarking.
    4. enc, err := xl.AppendTo(nil)
    5. if err != nil {
    6. b.Fatal(err)
    7. }
    8. b.Logf("Serialized size: %d bytes", len(enc))
    9. rng := rand.New(rand.NewSource(0))
    10. dump := make([]byte, len(enc))
    11. b.Run("UpdateObjectVersion", func(b *testing.B) {
    12. b.SetBytes(int64(size))
    13. b.ResetTimer()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableCollection.java

    1. for (E e : this) {
    2. dst[offset++] = e;
    3. }
    4. return offset;
    5. }
    6.  
    7. @J2ktIncompatible // serialization
    8. @GwtIncompatible // serialization
    9. Object writeReplace() {
    10. // We serialize by default to ImmutableList, the simplest thing that works.
    11. return new ImmutableList.SerializedForm(toArray());
    12. }
    13.  
    14. @J2ktIncompatible // serialization
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Aug 12 16:59:15 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. doc/go_mem.html

    1. </p>
    2.  
    3.  
    4. <h3 id="advice">Advice</h3>
    5.  
    6. <p>
    7. Programs that modify data being simultaneously accessed by multiple goroutines
    8. must serialize such access.
    9. </p>
    10.  
    11. <p>
    12. To serialize access, protect the data with channel operations or other synchronization primitives
    13. such as those in the <a href="/pkg/sync/"><code>sync</code></a>
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableMap.java

    1. @Override
    2. @J2ktIncompatible // serialization
    3. @GwtIncompatible // serialization
    4. Object writeReplace() {
    5. return super.writeReplace();
    6. }
    7.  
    8. // This class is never actually serialized directly, but we have to make the
    9. // warning go away (and suppressing would suppress for all nested classes too)
    10. @J2ktIncompatible // serialization
    11. private static final long serialVersionUID = 0;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableBiMap.java

    1. @Override
    2. @DoNotCall("Always throws UnsupportedOperationException")
    3. @CheckForNull
    4. public final V forcePut(K key, V value) {
    5. throw new UnsupportedOperationException();
    6. }
    7.  
    8. /**
    9. * Serialized type for all ImmutableBiMap instances. It captures the logical contents and they are
    10. * reconstructed using public factory methods. This ensures that the implementation types remain
    11. * as implementation details.
    12. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top