Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for transient (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

            }
    
            @Transient
            var transientByte: Byte? = null
    
            @Transient
            var transientShort: Short? = null
    
            @Transient
            var transientInt: Int? = null
    
            @Transient
            var transientLong: Long? = null
    
            @Transient
            var transientString: String? = null
    
            @Transient
            var transientFloat: Float? = null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. cmd/metacache-set_gen.go

    			z.IncludeDirectories, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "IncludeDirectories")
    				return
    			}
    		case "Transient":
    			z.Transient, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Transient")
    				return
    			}
    		case "Versioned":
    			z.Versioned, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Versioned")
    				return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:23:12 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      }
    
      static class EntrySet<K, V> extends ImmutableSet<Entry<K, V>> {
        private final transient ImmutableMap<K, V> map;
        private final transient @Nullable Object[] alternatingKeysAndValues;
        private final transient int keyOffset;
        private final transient int size;
    
        EntrySet(
            ImmutableMap<K, V> map,
            @Nullable Object[] alternatingKeysAndValues,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/HashBiMap.java

      /** Maps an "entry" to the key of that entry. */
      transient @Nullable K[] keys;
      /** Maps an "entry" to the value of that entry. */
      transient @Nullable V[] values;
    
      transient int size;
      transient int modCount;
      /** Maps a bucket to the "entry" of its first element. */
      private transient int[] hashTableKToV;
      /** Maps a bucket to the "entry" of its first element. */
      private transient int[] hashTableVToK;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

       * by init(), which the constructor calls.
       */
    
      /** The keys of the entries in the map. */
      transient @Nullable Object[] keys;
    
      /** The values of the entries in the map. */
      transient int[] values;
    
      transient int size;
    
      transient int modCount;
    
      /**
       * The hashtable. Its values are indexes to the keys, values, and entries arrays.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  6. cmd/metacache-server-pool.go

    	}
    
    	// Decode and get the optional list id from the marker.
    	o.parseMarker()
    	if o.BaseDir == "" {
    		o.BaseDir = baseDirFromPrefix(o.Prefix)
    	}
    	o.Transient = o.Transient || isReservedOrInvalidBucket(o.Bucket, false)
    	o.SetFilter()
    	if o.Transient {
    		o.Create = false
    	}
    
    	// We have 2 cases:
    	// 1) Cold listing, just list.
    	// 2) Returning, but with no id. Start async listing.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/RegularImmutableBiMap.java

      static final double MAX_LOAD_FACTOR = 1.2;
    
      @CheckForNull private final transient @Nullable ImmutableMapEntry<K, V>[] keyTable;
      @CheckForNull private final transient @Nullable ImmutableMapEntry<K, V>[] valueTable;
      @VisibleForTesting final transient Entry<K, V>[] entries;
      private final transient int mask;
      private final transient int hashCode;
    
      static <K, V> ImmutableBiMap<K, V> fromEntries(Entry<K, V>... entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    public static core.AnyOf anyOf(Matcher, Matcher, Matcher, Matcher, Matcher, Matcher); public static core.AnyOf anyOf(Matcher, Matcher); public static transient core.AnyOf anyOf(Matcher[]); public static core.CombinableMatcher$CombinableBothMatche both(Matcher); public static core.CombinableMatcher$CombinableEitherMatc either(Matcher); public static transient Matcher describedAs(String, Matcher, Object[]); public static Matcher everyItem(Matcher); public static Matcher is(Object); public static Matcher...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 44K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/tasks/GenerateModuleMetadata.java

     *
     * @since 4.3
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateModuleMetadata extends DefaultTask {
        private final Transient<Property<Publication>> publication;
        private final Transient<ListProperty<Publication>> publications;
        private final RegularFileProperty outputFile;
        private final FileCollection variantFiles;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/HashBiMap.java

      private transient @Nullable BiEntry<K, V>[] hashTableKToV;
    
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (see above)
      private transient @Nullable BiEntry<K, V>[] hashTableVToK;
    
      @Weak @CheckForNull private transient BiEntry<K, V> firstInKeyInsertionOrder;
      @Weak @CheckForNull private transient BiEntry<K, V> lastInKeyInsertionOrder;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top