Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for livable (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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