Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 387 for transient (0.26 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Transient.java

    /**
     * A value that gets discarded during serialization.
     */
    public abstract class Transient<T> implements java.io.Serializable {
    
        /**
         * A mutable variable that gets discarded during serialization.
         */
        public static abstract class Var<T> extends Transient<T> {
            public abstract void set(T value);
        }
    
        public static <T> Transient<T> of(T value) {
            return new ImmutableTransient<>(value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularImmutableBiMap.java

      @CheckForNull private final transient Object keyHashTable;
      @VisibleForTesting final transient @Nullable Object[] alternatingKeysAndValues;
      private final transient int keyOffset; // 0 for K-to-V, 1 for V-to-K
      private final transient int size;
      private final transient RegularImmutableBiMap<V, K> inverse;
    
      /** Constructor for empty bimap. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/SingletonImmutableBiMap.java

    @SuppressWarnings("serial") // uses writeReplace(), not default serialization
    @ElementTypesAreNonnullByDefault
    final class SingletonImmutableBiMap<K, V> extends ImmutableBiMap<K, V> {
    
      final transient K singleKey;
      final transient V singleValue;
    
      SingletonImmutableBiMap(K singleKey, V singleValue) {
        checkEntryNotNull(singleKey, singleValue);
        this.singleKey = singleKey;
        this.singleValue = singleValue;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RegularImmutableSet.java

      // The first `size` elements are non-null.
      @VisibleForTesting final transient @Nullable Object[] elements;
      private final transient int hashCode;
      // the same values as `elements` in hashed positions (plus nulls)
      @VisibleForTesting final transient @Nullable Object[] table;
      // 'and' with an int to get a valid table index.
      private final transient int mask;
      private final transient int size;
    
      RegularImmutableSet(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/WorkerAction.java

        private final String workerImplementationName;
        private transient CountDownLatch completed;
        private transient ResponseProtocol responder;
        private transient WorkerLogEventListener workerLogEventListener;
        private transient RequestHandler<Object, Object> implementation;
        private transient InstantiatorFactory instantiatorFactory;
        private transient Exception failure;
    
        public WorkerAction(Class<?> workerImplementation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 08:22:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java

          new RegularImmutableSortedMultiset<>(Ordering.natural());
    
      @VisibleForTesting final transient RegularImmutableSortedSet<E> elementSet;
      private final transient long[] cumulativeCounts;
      private final transient int offset;
      private final transient int length;
    
      RegularImmutableSortedMultiset(Comparator<? super E> comparator) {
        this.elementSet = ImmutableSortedSet.emptySet(comparator);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/NetworkingIssueVerifierTest.groovy

    import spock.lang.Subject
    import spock.lang.Unroll
    
    @Subject(NetworkingIssueVerifier)
    class NetworkingIssueVerifierTest extends Specification {
    
        @Unroll("'#description' is likely transient network issue")
        def "verifies if an exception is a related to transient network issue"() {
            expect:
            NetworkingIssueVerifier.isLikelyTransientNetworkingIssue(failure)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/AbstractMultimap.java

      abstract Iterator<Entry<K, V>> entryIterator();
    
      @LazyInit @CheckForNull private transient Set<K> keySet;
    
      @Override
      public Set<K> keySet() {
        Set<K> result = keySet;
        return (result == null) ? keySet = createKeySet() : result;
      }
    
      abstract Set<K> createKeySet();
    
      @LazyInit @CheckForNull private transient Multiset<K> keys;
    
      @Override
      public Multiset<K> keys() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/ModifierUtil.java

        }
    
        /**
         * <code>transient</code>かどうか返します。
         *
         * @param field
         *            フィールド
         * @return <code>transient</code>なら{@literal true}
         * @see #isTransient(int)
         */
        public static boolean isTransient(final Field field) {
            return isTransient(field.getModifiers());
        }
    
        /**
         * <code>transient</code>かどうか返します。
         *
         * @param modifier
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top