Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for retryCount (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

         */
        private boolean attemptRecovery(RdmaConnection connection, Exception error) {
            int retryCount = 0;
    
            while (retryCount < maxRetries) {
                retryCount++;
                log.info("Attempting RDMA connection recovery (attempt {} of {})", retryCount, maxRetries);
    
                try {
                    // Exponential backoff with overflow protection - ensure safe calculation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

            public boolean shouldRetry() {
                return retryCount < 3;
            }
    
            /**
             * Increment retry count and update next retry time
             */
            public void incrementRetry() {
                retryCount++;
                // Exponential backoff: 1s, 2s, 4s
                nextRetryTime = System.currentTimeMillis() + (1000L << retryCount);
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. cmd/notification.go

    			Host: addr,
    		}
    
    		retryCount := g.retryCount
    		for i := range retryCount {
    			g.errs[index].Err = nil
    			if err := f(); err != nil {
    				g.errs[index].Err = err
    
    				if contextCanceled(ctx) {
    					// context already canceled no retries.
    					retryCount = 0
    				}
    
    				// Last iteration log the error.
    				if i == retryCount-1 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.9K bytes
    - Viewed (0)
  4. cmd/bucket-replication-utils.go

    // MRFReplicateEntry mrf entry to save to disk
    type MRFReplicateEntry struct {
    	Bucket     string `json:"bucket" msg:"b"`
    	Object     string `json:"object" msg:"o"`
    	versionID  string `json:"-"`
    	RetryCount int    `json:"retryCount" msg:"rc"`
    	sz         int64  `json:"-"`
    }
    
    // MRFReplicateEntries has the map of MRF entries to save to disk
    type MRFReplicateEntries struct {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 26K bytes
    - Viewed (0)
  5. docs/smb3-features/03-multi-channel-design.md

            public boolean shouldRetry() {
                return retryCount < 3 && System.currentTimeMillis() >= nextRetryTime;
            }
            
            public void incrementRetry() {
                retryCount++;
                // Exponential backoff: 1s, 2s, 4s
                nextRetryTime = System.currentTimeMillis() + (1000L << retryCount);
            }
        }
        
        public void handleFailure(ChannelInfo failedChannel, Exception error) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    		Config:  rcfg,
    		remotes: tgts,
    	}, retryCount)
    }
    
    // queueReplicationHeal enqueues objects that failed replication OR eligible for resyncing through
    // an ongoing resync operation or via existing objects replication configuration setting.
    func queueReplicationHeal(ctx context.Context, bucket string, oi ObjectInfo, rcfg replicationConfig, retryCount int) (roi ReplicateObjectInfo) {
    	// ignore modtime zero objects
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 118K bytes
    - Viewed (0)
  7. cmd/object-api-datatypes.go

    	VersionPurgeStatus         VersionPurgeStatusType
    	ReplicationState           ReplicationState
    	DeleteMarker               bool
    
    	OpType               replication.Type
    	EventType            string
    	RetryCount           uint32
    	ResetID              string
    	Dsc                  ReplicateDecision
    	ExistingObjResync    ResyncDecision
    	TargetArn            string
    	TargetStatuses       map[string]replication.StatusType
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

        private static final int SO_TIMEOUT = Config.getInt("jcifs.smb1.netbios.soTimeout", DEFAULT_SO_TIMEOUT);
        private static final int RETRY_COUNT = Config.getInt("jcifs.smb1.netbios.retryCount", DEFAULT_RETRY_COUNT);
        private static final int RETRY_TIMEOUT = Config.getInt("jcifs.smb1.netbios.retryTimeout", DEFAULT_RETRY_TIMEOUT);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/Configuration.java

         *
         * @return timeout of retry requests, in milliseconds
         */
        int getNetbiosRetryTimeout();
    
        /**
         *
         * Property {@code jcifs.netbios.retryCount} (int, default 2)
         *
         * @return maximum number of retries for netbios requests
         */
        int getNetbiosRetryCount();
    
        /**
         *
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  10. .github/workflows/tests.yml

                exit 1
              fi
              max_retries=12
              retry_count=0
              if [ -t 0 ]; then
                TTY_FLAG="-t"
              else
                TTY_FLAG=""
              fi
              while [ $retry_count -lt $max_retries ]; do
                if docker exec -i "${container_name}" bash -c "su - omm -c 'gsql -U omm -c \"select 1;\"'" 
                then
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top