Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nextAttempt (0.07 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        // auth credentials.
        rawSocket?.closeQuietly()
    
        val nextAttempt = attempt + 1
        return when {
          nextAttempt < MAX_TUNNEL_ATTEMPTS -> {
            user.callConnectEnd(route, null)
            ConnectResult(
              plan = this,
              nextPlan =
                copy(
                  attempt = nextAttempt,
                  tunnelRequest = nextTunnelRequest,
                ),
            )
          }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. docs/debugging/xl-meta/main.go

    			var missingAll int
    			var lastValidAll int
    
    			attempt := 0
    			for block := 0; ; block++ {
    				combineFilled := combineFilledBlocks[block]
    				combineShared := combineSharedBlocks[block]
    			nextAttempt:
    				fmt.Printf("Block %d, Base version %q. Part %d. Files %d\n", block+1, key, part, len(file))
    				m, err := readAndMap(file, part, block)
    				if err != nil {
    					return err
    				}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 05 11:57:44 UTC 2024
    - 40.3K bytes
    - Viewed (0)
Back to top