Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for previous (0.21 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              StrongKeyWeakValueSegment<K, V> segment, StrongKeyWeakValueEntry<K, V> entry, V value) {
            WeakValueReference<K, V, StrongKeyWeakValueEntry<K, V>> previous = entry.valueReference;
            entry.valueReference = new WeakValueReferenceImpl<>(segment.queueForValues, value, entry);
            previous.clear();
          }
    
          @Override
          public StrongKeyWeakValueEntry<K, V> newEntry(
              StrongKeyWeakValueSegment<K, V> segment,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    			// that was previously preserved during PutObject() call
    			// on a versioned bucket.
    			s.moveToTrash(legacyDataPath, true, false)
    		}
    		if contextCanceled(ctx) {
    			return res, ctx.Err()
    		}
    		if err = renameAll(srcDataPath, dstDataPath, skipParent); err != nil {
    			if legacyPreserved {
    				// Any failed rename calls un-roll previous transaction.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

     *  Fix: Support TLSv1.3 on devices that support it.
    
     *  Fix: Share pooled connections across equivalent `OkHttpClient` instances. Previous releases had
        a bug where a shared connection pool did not guarantee shared connections in some cases.
     *  Fix: Prefer the server's response body on all conditional cache misses. Previously we would
        return the cached response's body if it had a newer `Last-Modified` date.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  4. docs/bucket/notifications/README.md

    To configure this bucket notification, we need the ARN printed by MinIO in the previous step. Additional information about ARN is available [here](http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  5. CHANGELOG/CHANGELOG-1.3.md

          - [Docker runtime Known Issues](#docker-runtime-known-issues)
          - [Rkt runtime Known Issues](#rkt-runtime-known-issues)
      - [Provider-specific Notes](#provider-specific-notes)
      - [Previous Releases Included in v1.3.0](#previous-releases-included-in-v130)
    - [v1.3.0-beta.3](#v130-beta3)
      - [Downloads](#downloads-10)
      - [Changelog since v1.3.0-beta.2](#changelog-since-v130-beta2)
        - [Action Required](#action-required)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    		enableSha256:     enableSha256,
    	})
    	var prevResult madmin.SpeedTestResult
    	for {
    		select {
    		case <-ctx.Done():
    			return
    		case <-keepAliveTicker.C:
    			// if previous result is set keep writing the
    			// previous result back to the client
    			if prevResult.Version != "" {
    				if err := enc.Encode(prevResult); err != nil {
    					return
    				}
    			} else {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                        break;
                    }
    
                    if ( nextHead != null ) {
                        // prepare remaining
                        // (e.g. set session/tree/fileid returned by the previous requests)
                        resp.prepare(nextHead);
                    }
                    curHead = nextHead;
                }
                finally {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            // if already there we remove it and add again
            int index = attachedArtifacts.indexOf(artifact);
            if (index >= 0) {
                LOGGER.warn("artifact '{}' already attached, replacing previous instance", artifact);
                attachedArtifacts.set(index, artifact);
            } else {
                attachedArtifacts.add(artifact);
            }
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional int64 limit = 7;
    
      // The continue option should be set when retrieving more results from the server. Since this value is
      // server defined, clients may only use the continue value from a previous query result with identical
      // query parameters (except for the value of continue) and the server may reject a continue value it
      // does not recognize. If the specified continue value is no longer valid whether due to expiration
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertEquals(-1, iterator.previousIndex());
        try {
          iterator.next();
          fail("no exception thrown");
        } catch (NoSuchElementException expected) {
        }
        try {
          iterator.previous();
          fail("no exception thrown");
        } catch (NoSuchElementException expected) {
        }
        try {
          iterator.remove();
          fail("no exception thrown");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 55.7K bytes
    - Viewed (0)
Back to top