Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for livable (0.21 sec)

  1. cmd/object-handlers.go

    	sseConfig, _ := globalBucketSSEConfigSys.Get(bucket)
    	sseConfig.Apply(r.Header, sse.ApplyOptions{
    		AutoEncrypt: globalAutoEncryption,
    	})
    
    	var buf *bytebufferpool.ByteBuffer
    	// Disable cache for encrypted objects - headers are applied with sseConfig.Apply if auto encrypted.
    	if globalCacheConfig.MatchesSize(size) && !crypto.Requested(r.Header) {
    		buf = bytebufferpool.Get()
    		defer bytebufferpool.Put(buf)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    		valid bool
    	}{
    		{name: "valid", in: &networking.HTTPRetry{
    			Attempts:      10,
    			PerTryTimeout: &durationpb.Duration{Seconds: 2},
    			RetryOn:       "5xx,gateway-error",
    		}, valid: true},
    		{name: "disable retries", in: &networking.HTTPRetry{
    			Attempts: 0,
    		}, valid: true},
    		{name: "invalid, retry policy configured but attempts set to zero", in: &networking.HTTPRetry{
    			Attempts:      0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// This will be available when "heterogeneous type" supported is added to cel-go.
    				// In the meantime, the only other option would be to use dynamic types for nullable types, which
    				// would disable type checking. We plan to wait for "heterogeneous type" support.
    				//"self.m['a'] == null": "found no matching overload for '_==_' applied to '(string, null)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    	}
    	expectedKey, _ = controller.KeyFunc(job2)
    	if got, want := key, expectedKey; got != want {
    		t.Errorf("queue.Get() = %v, want %v", got, want)
    	}
    }
    
    func TestDeletePodOrphan(t *testing.T) {
    	// Disable batching of pod updates to show it does not get requeued at all
    	t.Cleanup(setDurationDuringTest(&syncJobBatchPeriod, 0))
    	logger, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    		buf.Flush()
    		conn.Close()
    	}))
    
    	// Our test server above is sending back bogus data after the
    	// response (the "0\r\n\r\n" part), which causes the Transport
    	// code to log spam. Disable keep-alives so we never even try
    	// to reuse the connection.
    	cst.tr.DisableKeepAlives = true
    
    	res, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if res.Body != NoBody {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    				return madmin.ReplicateEditStatus{}, errSRInvalidRequest(fmt.Errorf("Endpoint %s does not belong to deployment expected: %s (found %s) ", peer.Endpoint, v.DeploymentID, info.DeploymentID))
    			}
    		}
    	}
    
    	// if disable/enable ILM expiry replication, deployment id not needed.
    	// check for below error only if other options being updated (e.g. endpoint, sync, bandwidth)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	}, func(t *testing.T, timeout time.Duration) error {
    		cst := newClientServerTest(t, mode, serve(200), func(ts *httptest.Server) {
    			ts.Config.ReadHeaderTimeout = timeout
    			ts.Config.IdleTimeout = 0 // disable idle timeout
    		})
    		defer cst.close()
    		ts := cst.ts
    
    		// rather than using an http.Client, create a single connection, so that
    		// we can ensure this connection is not closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top