Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for defaultSettings (0.46 sec)

  1. pkg/test/framework/resource/flags.go

    	"fmt"
    	"os"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/framework/label"
    )
    
    var settingsFromCommandLine = DefaultSettings()
    
    // SettingsFromCommandLine returns settings obtained from command-line flags. config.Parse must be called before
    // calling this function.
    func SettingsFromCommandLine(testID string) (*Settings, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

          }
        }
    
      /**
       * Settings we receive from the peer. Changes to the field are guarded by this. The instance is
       * never mutated once it has been assigned.
       */
      var peerSettings = DEFAULT_SETTINGS
    
      /** The bytes consumed and acknowledged by the application. */
      val readBytes: WindowCounter = WindowCounter(streamId = 0)
    
      /** The total number of bytes produced by the application. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

            .pingIntervalMillis(pingIntervalMillis)
            .flowControlListener(flowControlListener)
            .build()
        this.http2Connection = http2Connection
        this.allocationLimit = Http2Connection.DEFAULT_SETTINGS.getMaxConcurrentStreams()
        http2Connection.start()
      }
    
      /**
       * Returns true if this connection can carry a stream allocation to `address`. If non-null
       * `route` is the resolved route for a connection.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top