Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for Peer (0.06 sec)

  1. cmd/peer-s3-client.go

    	return deleteBucketLocal(ctx, bucket, opts)
    }
    
    // client to talk to peer Nodes.
    type remotePeerS3Client struct {
    	node  Node
    	pools []int
    
    	// Function that returns the grid connection for this peer when initialized.
    	// Will return nil if the grid connection is not initialized yet.
    	gridConn func() *grid.Connection
    }
    
    // S3PeerSys - S3 peer call system.
    type S3PeerSys struct {
    	peerClients []peerS3Client // Excludes self
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. cmd/peer-rest-client.go

    	return &peerRESTClient{
    		host: peer, restClient: restClient, gridHost: gridHost,
    		gridConn: func() *grid.Connection {
    			// Lazy initialization of grid connection.
    			// When we create this peer client, the grid connection is likely not yet initialized.
    			if gridHost == "" {
    				bugLogIf(context.Background(), fmt.Errorf("gridHost is empty for peer %s", peer.String()), peer.String()+":gridHost")
    				return nil
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    		},
    	}, nil
    }
    
    // PeerEndpointController is the controller manager for updating the peer endpoint leases.
    // This provides a separate independent reconciliation loop for peer endpoint leases
    // which ensures that the peer kube-apiservers are fetching the updated endpoint info for a given apiserver
    // in the case when the peer wants to proxy the request to the given apiserver because it can not serve the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local_test.go

        - --initial-advertise-peer-urls=https://:2380
        - --initial-cluster==https://:2380
        - --key-file=etcd/server.key
        - --listen-client-urls=https://127.0.0.1:2379,https://:2379
        - --listen-metrics-urls=http://127.0.0.1:2381
        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
        - --peer-key-file=etcd/peer.key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v1/zz_generated.conversion.go

    	// WARNING: in.Target requires manual conversion: does not exist in peer-type
    	// WARNING: in.MetricName requires manual conversion: does not exist in peer-type
    	// WARNING: in.CurrentValue requires manual conversion: does not exist in peer-type
    	// WARNING: in.Selector requires manual conversion: does not exist in peer-type
    	// WARNING: in.AverageValue requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 43.7K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2beta1/zz_generated.conversion.go

    	// WARNING: in.Target requires manual conversion: does not exist in peer-type
    	// WARNING: in.MetricName requires manual conversion: does not exist in peer-type
    	// WARNING: in.CurrentValue requires manual conversion: does not exist in peer-type
    	// WARNING: in.Selector requires manual conversion: does not exist in peer-type
    	// WARNING: in.AverageValue requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 42.5K bytes
    - Viewed (0)
  7. src/net/unixsock_test.go

    		c1.SetReadDeadline(time.Now().Add(100 * time.Millisecond))
    		var b [1]byte
    		var peer Addr
    		if genericRead {
    			_, err = c1.(Conn).Read(b[:])
    		} else {
    			_, peer, err = c1.ReadFrom(b[:])
    		}
    		switch err {
    		case nil: // ReadFrom succeeds
    			if peer != nil { // peer is connected-mode
    				t.Fatalf("unexpected peer address: %v", peer)
    			}
    		default: // Read may timeout, it depends on the platform
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

      }
    
      private fun connectHttp2(
        peer: MockHttp2Peer,
        realConnection: RealConnection,
        maxConcurrentStreams: Int,
      ): Http2Connection {
        // Write the mocking script.
        val settings1 = Settings()
        settings1[Settings.MAX_CONCURRENT_STREAMS] = maxConcurrentStreams
        peer.sendFrame().settings(settings1)
        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. security/pkg/server/ca/server_test.go

    		if c.certChain != nil {
    			tlsInfo := credentials.TLSInfo{
    				State: tls.ConnectionState{VerifiedChains: c.certChain},
    			}
    			p := &peer.Peer{Addr: c.ipAddr, AuthInfo: tlsInfo}
    			ctx = peer.NewContext(ctx, p)
    		}
    		if c.fakeAuthInfo != nil {
    			ctx = peer.NewContext(ctx, &peer.Peer{Addr: c.ipAddr, AuthInfo: c.fakeAuthInfo})
    		}
    		response, err := server.CreateCertificate(ctx, request)
    
    		s, _ := status.FromError(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/net/net_fake.go

    	}
    
    	peer := &netFD{
    		family:      ln.family,
    		sotype:      ln.sotype,
    		net:         ln.net,
    		laddr:       ln.laddr,
    		raddr:       fd.laddr,
    		isConnected: true,
    	}
    	peer.fakeNetFD = newFakeNetFD(fd)
    	peer.fakeNetFD.queue = newPacketQueue(defaultBuffer)
    	defer func() {
    		if fd.peer != peer {
    			// Failed to connect; clean up.
    			peer.Close()
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top