Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 387 for transient (0.14 sec)

  1. cmd/metacache-manager.go

    	trash   map[string]metacache // Recently deleted lists.
    }
    
    const metacacheMaxEntries = 5000
    
    // initManager will start async saving the cache.
    func (m *metacacheManager) initManager() {
    	// Add a transient bucket.
    	// Start saver when object layer is ready.
    	go func() {
    		objAPI := newObjectLayerFn()
    		for objAPI == nil {
    			time.Sleep(time.Second)
    			objAPI = newObjectLayerFn()
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/collect/EnumMultiset.java

        EnumMultiset<E> result = create(type);
        Iterables.addAll(result, elements);
        return result;
      }
    
      private transient Class<E> type;
      private transient E[] enumConstants;
      private transient int[] counts;
      private transient int distinctElements;
      private transient long size;
    
      /** Creates an empty {@code EnumMultiset}. */
      private EnumMultiset(Class<E> type) {
        this.type = type;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. 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)
  5. guava/src/com/google/common/collect/DescendingMultiset.java

      @LazyInit @CheckForNull private transient Comparator<? super E> comparator;
    
      @Override
      public Comparator<? super E> comparator() {
        Comparator<? super E> result = comparator;
        if (result == null) {
          return comparator = Ordering.from(forwardMultiset().comparator()).<E>reverse();
        }
        return result;
      }
    
      @LazyInit @CheckForNull private transient NavigableSet<E> elementSet;
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ConventionReportTask.java

    import org.gradle.internal.serialization.Transient;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.File;
    import java.util.HashSet;
    import java.util.Set;
    
    import static java.util.Collections.singleton;
    import static java.util.Objects.requireNonNull;
    import static org.gradle.internal.serialization.Transient.varOf;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 10:37:35 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedObject implements Multimap<K, V> {
        @CheckForNull transient Set<K> keySet;
        @CheckForNull transient Collection<V> valuesCollection;
        @CheckForNull transient Collection<Map.Entry<K, V>> entries;
        @CheckForNull transient Map<K, Collection<V>> asMap;
        @CheckForNull transient Multiset<K> keys;
    
        @SuppressWarnings("unchecked")
        @Override
        Multimap<K, V> delegate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedObject implements Multimap<K, V> {
        @CheckForNull transient Set<K> keySet;
        @CheckForNull transient Collection<V> valuesCollection;
        @CheckForNull transient Collection<Map.Entry<K, V>> entries;
        @CheckForNull transient Map<K, Collection<V>> asMap;
        @CheckForNull transient Multiset<K> keys;
    
        @SuppressWarnings("unchecked")
        @Override
        Multimap<K, V> delegate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

       */
      @VisibleForTesting transient long[] links;
    
      /** Pointer to the first node in the linked list, or {@code ENDPOINT} if there are no entries. */
      private transient int firstEntry;
    
      /** Pointer to the last node in the linked list, or {@code ENDPOINT} if there are no entries. */
      private transient int lastEntry;
    
      ObjectCountLinkedHashMap() {
        this(DEFAULT_SIZE);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 5.9K bytes
    - Viewed (0)
Back to top