Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 581 for succeeds (0.07 sec)

  1. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

    1. * expectedOldValue} with {@code newValue} and returns true; otherwise, this method returns false.
    2. *
    3. * <p>If {@code expectedOldValue} is zero, this method will succeed if {@code (key, zero)} is
    4. * currently in the map, or if {@code key} is not in the map at all.
    5. */
    6. boolean replace(K key, long expectedOldValue, long newValue) {
    7. if (expectedOldValue == 0L) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

    1. // lockD -> lockA
    2. lockD.lock();
    3. lockA.lock();
    4. lockA.unlock();
    5. lockD.unlock();
    6.  
    7. // lockA -> lockD should warn but otherwise succeed because lockD was
    8. // created by a factory with the WARN policy.
    9. lockA.lock();
    10. lockD.lock();
    11. }
    12.  
    13. public void testReentrantLock_tryLock() throws Exception {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. cmd/storage-rest-client.go

    1. if !client.IsOnlineWS() {
    2. // make sure to check if the disk is offline, since the underlying
    3. // value is cached we should attempt to invalidate it if such calls
    4. // were attempted. This can lead to false success under certain conditions
    5. // - this change attempts to avoid stale information if the underlying
    6. // transport is already down.
    7. return "", errDiskNotFound
    8. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Oct 13 13:07:21 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. internal/crypto/key.go

    1. }
    2.  
    3. // Unseal decrypts a sealed key using the 256 bit external key. Since the sealed key
    4. // may be cryptographically bound to the object's path the same bucket/object as during sealing
    5. // must be provided. On success the ObjectKey contains the decrypted sealed key.
    6. func (key *ObjectKey) Unseal(extKey []byte, sealedKey SealedKey, domain, bucket, object string) error {
    7. var unsealConfig sio.Config
    8. switch sealedKey.Algorithm {
    9. default:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Mar 19 20:28:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/transport/Transport.java

    1. this.state = 4; /* error */
    2. cleanupThread(timeout);
    3. throw this.te;
    4. }
    5. this.state = 3; /* Success! */
    6. return true;
    7. }
    8. break;
    9. case 3:
    10. return true; // already connected
    11. case 4:
    12. this.state = 6;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  6. helm-releases/minio-3.6.4.tgz

    labels: app: {{ template "minio.name" . }}-make-bucket-job chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} annotations: "helm.sh/hook": post-install,post-upgrade "helm.sh/hook-delete-policy": hook-succeeded,before-hook-creation {{- with .Values.makeBucketJob.annotations }} {{ toYaml . | indent 4 }} {{- end }} spec: template: metadata: labels: app: {{ template "minio.name" . }}-job release: {{ .Release.Name }} {{- if .Values.podLabels }} {{ toYaml .Values.podLabels...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Apr 12 01:30:28 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  7. cmd/prepare-storage.go

    1. logger.Fatal(errInvalidArgument, "Unable to use the drive %s: %v", endpoints[i], err)
    2. }
    3. }
    4. }
    5. }
    6.  
    7. // Pre-emptively check if one of the formatted disks
    8. // is invalid. This function returns success for the
    9. // most part unless one of the formats is not consistent
    10. // with expected Erasure format. For example if a user is
    11. // trying to pool FS backend into an Erasure set.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 20:51:54 UTC 2024
    - 11.1K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

    1. final CountDownLatch latch = new CountDownLatch(1);
    2.  
    3. logger.info("Parsing words from indexed documents.");
    4. suggestHelper.indexFromDocuments(ret -> {
    5. logger.info("Success indexing from documents.");
    6. latch.countDown();
    7. }, t -> {
    8. logger.error("Failed to update suggest index.", t);
    9. exitCode.set(1);
    10. latch.countDown();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. docs/site-replication/run-ssec-object-replication-with-compression.sh

    1. #if [[ ${RESULT} != *"Server side encryption specified with SSE-C with compression not allowed"* ]]; then
    2. # echo "BUG: Loading an SSE-C object to site with compression should fail. Succeeded though."
    3. # exit_1
    4. #fi
    5.  
    6. # Add replication site
    7. ./mc admin replicate add minio1 minio2 --insecure
    8. # sleep for replication to complete
    9. sleep 30
    10.  
    11. # List the objects from source site
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/ReaderInputStream.java

    1. startDraining(true);
    2. continue DRAINING;
    3. } else if (result.isUnderflow()) {
    4. // If encoder underflows, it means either:
    5. // a) the final flush() succeeded; next drain (then done)
    6. // b) we encoded all of the input; next flush
    7. // c) we ran of out input to encode; next read more input
    8. if (doneEncoding) { // (a)
    9. doneFlushing = true;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top