Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for transient (0.19 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-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)
  3. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java

    import java.util.List;
    
    import org.eclipse.aether.graph.Dependency;
    
    /**
     */
    public class DependencyResolutionException extends Exception {
    
        private final transient DependencyResolutionResult result;
        private final transient String detailMessage;
    
        public DependencyResolutionException(DependencyResolutionResult result, String message, Throwable cause) {
            super(message, cause);
            this.result = result;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/JdkBackedImmutableBiMap.java

          }
        }
        ImmutableList<Entry<K, V>> entryList = ImmutableList.asImmutableList(entryArray, n);
        return new JdkBackedImmutableBiMap<>(entryList, forwardDelegate, backwardDelegate);
      }
    
      private final transient ImmutableList<Entry<K, V>> entries;
      private final Map<K, V> forwardDelegate;
      private final Map<V, K> backwardDelegate;
    
      private JdkBackedImmutableBiMap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

        private final List<Throwable> causes = new CopyOnWriteArrayList<Throwable>();
        private transient ThreadLocal<Boolean> hideCause = threadLocal();
        private transient Factory<String> messageFactory;
        private String message;
    
        public DefaultMultiCauseException(String message) {
            super(message);
            this.message = message;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashMap.java

       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @VisibleForTesting @CheckForNull transient int[] entries;
    
      /**
       * The keys of the entries in the map, in the range of [0, size()). The keys in [size(),
       * keys.length) are all {@code null}.
       */
      @VisibleForTesting @CheckForNull transient @Nullable Object[] keys;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        private List<File> suiteXmlFiles = new ArrayList<File>();
    
        private boolean preserveOrder;
    
        private boolean groupByInstances;
    
        private transient StringWriter suiteXmlWriter;
    
        private transient MarkupBuilder suiteXmlBuilder;
    
        private final Cached<String> cachedSuiteXml = Cached.of(new Callable<String>() {
            @Override
            public String call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/Striped64.java

      @CheckForNull transient volatile Cell[] cells;
    
      /**
       * Base value, used mainly when there is no contention, but also as a fallback during table
       * initialization races. Updated via CAS.
       */
      transient volatile long base;
    
      /** Spinlock (locked via CAS) used when resizing and/or creating Cells. */
      transient volatile int busy;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/Striped64.java

      @CheckForNull transient volatile Cell[] cells;
    
      /**
       * Base value, used mainly when there is no contention, but also as a fallback during table
       * initialization races. Updated via CAS.
       */
      transient volatile long base;
    
      /** Spinlock (locked via CAS) used when resizing and/or creating Cells. */
      transient volatile int busy;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (2)
  10. android/guava/src/com/google/common/collect/CompactHashSet.java

       *
       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @CheckForNull private transient int[] entries;
    
      /**
       * The elements contained in the set, in the range of [0, size()). The elements in [size(),
       * elements.length) are all {@code null}.
       */
      @VisibleForTesting @CheckForNull transient @Nullable Object[] elements;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top