Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for resume (0.17 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        // Pause in step 2.
        step2Waiter.awaitStarted();
    
        // Everything should still be open.
        assertStillOpen(closeable1, closeable2, closeable3, closeable4);
    
        // Cancel step 3, resume step 2, and pause in step 4.
        assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue();
        step2Waiter.awaitReturned();
        step4Waiter.awaitStarted();
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    			// Do not need to retry if we can't list objects on source.
    			return err
    		}
    
    		prevObj := ""
    
    		skipReplicate := false
    		for result := range slowCh {
    			result := result
    			if result.Name != prevObj {
    				prevObj = result.Name
    				skipReplicate = result.DeleteMarker && s3Type
    			}
    			if skipReplicate {
    				continue
    			}
    			wk.Take()
    			go func() {
    				defer wk.Give()
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        // Pause in step 2.
        step2Waiter.awaitStarted();
    
        // Everything should still be open.
        assertStillOpen(closeable1, closeable2, closeable3, closeable4);
    
        // Cancel step 3, resume step 2, and pause in step 4.
        assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue();
        step2Waiter.awaitReturned();
        step4Waiter.awaitStarted();
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 74.7K bytes
    - Viewed (0)
  4. cmd/object-api-listobjects_test.go

    					}
    				}
    
    				if testCase.result.IsTruncated != result.IsTruncated {
    					// Allow an extra continuation token.
    					if !result.IsTruncated || len(result.Objects) == 0 {
    						t.Errorf("Test %d: %s: Expected IsTruncated flag to be %v, but instead found it to be %v", i+1, instanceType, testCase.result.IsTruncated, result.IsTruncated)
    					}
    				}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  5. docs/bucket/notifications/README.md

            host='localhost'))
    channel = connection.channel()
    
    channel.exchange_declare(exchange='bucketevents',
                             exchange_type='fanout')
    
    result = channel.queue_declare(exclusive=False)
    queue_name = result.method.queue
    
    channel.queue_bind(exchange='bucketevents',
                       queue=queue_name)
    
    print(' [*] Waiting for logs. To exit press CTRL+C')
    
    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)
  6. cmd/xl-storage.go

    		renameAll(encodeDirObject(filePath), targetPath2, pathutil.Join(s.drivePath, minioMetaBucket))
    	}
    
    	// ENOSPC is a valid error from rename(); remove instead of rename in that case
    	if errors.Is(err, errDiskFull) || isSysErrNoSpace(err) {
    		if recursive {
    			err = removeAll(filePath)
    		} else {
    			err = Remove(filePath)
    		}
    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)
  7. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsScheduledJobCA.java

            setAvailable_Sum("available", opLambda);
        }
    
        public void setAvailable_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) {
            SumAggregationBuilder builder = regSumA(name, "available");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setAvailable_ExtendedStats() {
            setAvailable_ExtendedStats(null);
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 89.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsKeyMatchCA.java

            setBoost_Sum("boost", opLambda);
        }
    
        public void setBoost_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) {
            SumAggregationBuilder builder = regSumA(name, "boost");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoost_ExtendedStats() {
            setBoost_ExtendedStats(null);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 61.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsBoostDocumentRuleCA.java

            setCreatedTime_Sum("createdTime", opLambda);
        }
    
        public void setCreatedTime_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) {
            SumAggregationBuilder builder = regSumA(name, "createdTime");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setCreatedTime_ExtendedStats() {
            setCreatedTime_ExtendedStats(null);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsElevateWordCA.java

            setBoost_Sum("boost", opLambda);
        }
    
        public void setBoost_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) {
            SumAggregationBuilder builder = regSumA(name, "boost");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoost_ExtendedStats() {
            setBoost_ExtendedStats(null);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 54.5K bytes
    - Viewed (0)
Back to top