Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Leer (0.17 sec)

  1. cmd/peer-rest-server.go

    	if localMetacacheMgr != nil {
    		localMetacacheMgr.deleteBucketCache(bucketName)
    	}
    	return
    }
    
    // GetAllBucketStatsHandler - fetches bucket replication stats for all buckets from this peer.
    func (s *peerRESTServer) GetAllBucketStatsHandler(mss *grid.MSS) (*BucketStatsMap, *grid.RemoteErr) {
    	replicationStats := globalReplicationStats.GetAll()
    	bucketStatsMap := make(map[string]BucketStats, len(replicationStats))
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        shouldntImpactConnection[Settings.INITIAL_WINDOW_SIZE] = 3368
        peer.sendFrame().settings(initial)
        peer.acceptFrame() // ACK
        peer.sendFrame().settings(shouldntImpactConnection)
        peer.acceptFrame() // ACK 2
        peer.acceptFrame() // HEADERS
        peer.play()
        val connection = connect(peer)
    
        // Verify the peer received the second ACK.
        val ackFrame = peer.takeFrame()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 75.4K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

              metadata:
                type: object
              spec:
                description: BGPPeerSpec defines the desired state of Peer.
                properties:
                  bfdProfile:
                    type: string
                  ebgpMultiHop:
                    description: EBGP peer is multi-hops away
                    type: boolean
                  holdTime:
                    description: Requested BGP hold time, per RFC4271.
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/testdata/config_dump.json

                              },
                              {
                                "name": "waypoint_upstream_peer_metadata",
                                "typed_config": {
                                  "@type": "type.googleapis.com/udpa.type.v1.TypedStruct",
                                  "type_url": "type.googleapis.com/io.istio.http.peer_metadata.Config",
                                  "value": {
                                    "upstream_discovery": [
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  5. istioctl/pkg/writer/compare/testdata/configdump.json

                              {
                                "name": "waypoint_downstream_peer_metadata",
                                "typed_config": {
                                  "@type": "type.googleapis.com/udpa.type.v1.TypedStruct",
                                  "type_url": "type.googleapis.com/io.istio.http.peer_metadata.Config",
                                  "value": {
                                    "downstream_discovery": [
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                              {
                                "name": "waypoint_downstream_peer_metadata",
                                "typed_config": {
                                  "@type": "type.googleapis.com/udpa.type.v1.TypedStruct",
                                  "type_url": "type.googleapis.com/io.istio.http.peer_metadata.Config",
                                  "value": {
                                    "downstream_discovery": [
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    		v, ok := cache.iamGroupPolicyMap.Load(name)
    		return v, ok
    	}
    	return cache.iamUserPolicyMap.Load(name)
    }
    
    // GroupNotificationHandler - updates in-memory cache on notification of
    // change (e.g. peer notification for object storage and etcd watch
    // notification).
    func (store *IAMStoreSys) GroupNotificationHandler(ctx context.Context, group string) error {
    	cache := store.lock()
    	defer store.unlock()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  8. docs/changelogs/changelog_3x.md

        certificate pinning for internationalized domain names.
     *  Fix: Don’t crash on non-ASCII `ETag` headers. Previously OkHttp would reject
        these headers when validating a cached response.
     *  Fix: Don’t allow remote peer to arbitrarily size the HPACK decoder dynamic
        table.
     *  Fix: Honor per-host configuration in Android’s network security config.
        Previously disabling cleartext for any host would disable cleartext for all
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSiteReplicationPeerResp: {
    		Code:           "XMinioSiteReplicationPeerResp",
    		Description:    "Error received when contacting a peer site",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrSiteReplicationBackendIssue: {
    		Code:           "XMinioSiteReplicationBackendIssue",
    		Description:    "Error when requesting object layer backend",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
  10. cmd/iam.go

    	}
    	return roleArn, rolePolicy, nil
    }
    
    // DeletePolicy - deletes a canned policy from backend. `notifyPeers` is true
    // whenever this is called via the API. It is false when called via a
    // notification from another peer. This is to avoid infinite loops.
    func (sys *IAMSys) DeletePolicy(ctx context.Context, policyName string, notifyPeers bool) error {
    	if !sys.Initialized() {
    		return errServerNotInitialized
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
Back to top