Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for tent (0.11 sec)

  1. src/os/signal/doc.go

    loses its controlling terminal. The SIGINT signal is sent when the
    user at the controlling terminal presses the interrupt character,
    which by default is ^C (Control-C). The SIGQUIT signal is sent when
    the user at the controlling terminal presses the quit character, which
    by default is ^\ (Control-Backslash). In general you can cause a
    program to simply exit by pressing ^C, and you can cause it to exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. internal/grid/handlers.go

    	// Buffers sent on out can not be referenced once sent.
    	StreamHandlerFn func(ctx context.Context, payload []byte, in <-chan []byte, out chan<- []byte) *RemoteErr
    
    	// StreamHandler handles fully bidirectional streams,
    	// There is flow control in both directions.
    	StreamHandler struct {
    		// Handle an incoming request. Initial payload is sent.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_notify_events_errors_total`             | Events that were failed to be sent to the targets (deprecated, please use 'minio_notify_target_failed_events' instead)                      |
    | `minio_notify_events_sent_total`               | Total number of events sent to the targets (deprecated, please use 'minio_notify_target_total_events' instead)                              |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/ztunnel-dashboard.gen.json

             "type": "timeseries"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Bytes sent and recieved per instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. cmd/storage-rest-server.go

    // operations, such as bitrot verification or data usage scanning.
    // Every 10 seconds a space character is sent.
    // keepHTTPReqResponseAlive will wait for the returned body to be read before starting the ticker.
    // The returned function should always be called to release resources.
    // An optional error can be sent which will be picked as text only error,
    // without its original type by the receiver.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle-handlers_test.go

    	"github.com/minio/minio/internal/auth"
    )
    
    // Test S3 Bucket lifecycle APIs with wrong credentials
    func TestBucketLifecycleWrongCredentials(t *testing.T) {
    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testBucketLifecycleHandlersWrongCredentials, endpoints: []string{"GetBucketLifecycle", "PutBucketLifecycle", "DeleteBucketLifecycle"}})
    }
    
    // Test for authentication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. internal/grid/benchmark_test.go

    		{name: "responses", fn: benchmarkGridStreamRespOnly},
    		{name: "twoway", fn: benchmarkGridStreamTwoway},
    	}
    	for _, test := range tests {
    		b.Run(test.name, func(b *testing.B) {
    			for n := 2; n <= 32; n *= 2 {
    				b.Run("servers="+strconv.Itoa(n), func(b *testing.B) {
    					test.fn(b, n)
    				})
    			}
    		})
    	}
    }
    
    func benchmarkGridStreamRespOnly(b *testing.B, n int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. pilot/test/xds/fake.go

    }
    
    func (f *FakeDiscoveryServer) T() test.Failer {
    	return f.t
    }
    
    // EnsureSynced checks that all ConfigUpdates sent have been established
    // This does NOT ensure that the change has been sent to all proxies; only that PushContext is updated
    // Typically, if trying to ensure changes are sent, its better to wait for the push event.
    
    func (f *FakeDiscoveryServer) EnsureSynced(t test.Failer) {
    	c := f.Discovery.InboundUpdates.Load()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    	// A nonce becomes stale following a newer nonce being sent to Envoy.
    	// TODO: due to concurrent unsubscribe, this probably doesn't make sense. Do we need any logic here?
    	if request.ResponseNonce != "" && request.ResponseNonce != previousInfo.NonceSent {
    		deltaLog.Debugf("ADS:%s: REQ %s Expired nonce received %s, sent %s", stype,
    			con.ID(), request.ResponseNonce, previousInfo.NonceSent)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

      // Each workload must have at least either an address or hostname; not both.
      repeated bytes addresses = 3;
    
      // The hostname for the workload to be resolved by the ztunnel.
      // DNS queries are sent on-demand by default.
      // If the resolved DNS query has several endpoints, the request will be forwarded
      // to the first response.
      //
      // At a minimum, each workload must have either an address or hostname. For example,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top