Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,843 for lake (0.06 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	//   //go:build go1.22
    	//   type T struct { F std.Real } // correct new API
    	//
    	//   //go:build !go1.22
    	//   type T struct { F fake } // shim
    	//   type fake struct { ... }
    	//   func (fake) M () {}
    	//
    	// These alternative declarations of T use either the std.Real
    	// type, introduced in go1.22, or a fake type, for the field
    	// F. (The fakery could be arbitrarily deep, involving more
    	// nested fields and methods than are shown here.) Clients
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/scale_test.go

    			defer cleanup(t, m)
    
    			now := time.Now()
    			fakePods := make([]*fakePod, numTestPods)
    			for i := 0; i < numTestPods; i++ {
    				fake, err := newFakePod(tt.http)
    				if err != nil {
    					t.Fatalf("unexpected error creating fake pod: %v", err)
    				}
    				defer fake.stop()
    				handler := fake.probeHandler()
    				fakePods[i] = fake
    
    				pod := v1.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    		{
    			name: "when two pods are using same volume and both are deleted",
    			volumePaths: []string{
    				filepath.Join("pod1", "volumes", "fake-plugin", "pvc-abcdef"),
    				filepath.Join("pod2", "volumes", "fake-plugin", "pvc-abcdef"),
    			},
    			expectedVolumesNeedDevicePath:       []string{"fake-plugin/pvc-abcdef", "fake-plugin/pvc-abcdef"},
    			expectedVolumesFailedReconstruction: []string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/authz_test.go

    	"istio.io/istio/istioctl/pkg/util/testutil"
    )
    
    func TestAuthz(t *testing.T) {
    	cases := []testutil.TestCase{
    		{
    			Args:           []string{"-f fake.yaml"},
    			ExpectedOutput: "Error: failed to get config dump from file  fake.yaml: open  fake.yaml: no such file or directory\n",
    			WantException:  true,
    		},
    		{
    			Args: []string{"-f", "testdata/configdump.yaml"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/test.rdf

    1.0 UTF-8 http://www.w3.org/1999/02/22-rdf-syntax-ns# http://www.recshop.fake/cd# http://www.recshop.fake/cd/Empire Burlesque Shinsuke Sugaya Japan テスト 100 2010 コメント...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 437 bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest_shared_test.go

    		istioNamespace:    constants.IstioSystemNamespace,
    		watchedNamespaces: constants.IstioSystemNamespace,
    		operatorNamespace: operatorDefaultNamespace,
    		// placeholders, since the fake API server does not actually pull images and create pods.
    		hub: "fake hub",
    		tag: "fake tag",
    	}
    
    	_, mstr, err := renderOperatorManifest(nil, ocArgs)
    	if err != nil {
    		return err
    	}
    	if err := applyWithReconciler(reconciler, mstr); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/bootstrap/bootstrap_test.go

    	certificateSigningRequestDenied
    )
    
    type fakeClient struct {
    	certificatesclient.CertificateSigningRequestInterface
    	failureType failureType
    }
    
    func newClientset(opts fakeClient) *fake.Clientset {
    	f := fake.NewSimpleClientset()
    	switch opts.failureType {
    	case createError:
    		f.PrependReactor("create", "certificatesigningrequests", func(action clienttesting.Action) (handled bool, ret runtime.Object, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. chainable_api.go

    //	db.Where(User{Name: "non_existing"}).Assign(User{Email: "fake@fake.org"}).FirstOrInit(&user)
    //	// user -> User{Name: "non_existing", Email: "fake@fake.org"}
    //
    //	// assign email regardless of if record is found
    //	db.Where(User{Name: "jinzhu"}).Assign(User{Email: "fake@fake.org"}).FirstOrInit(&user)
    //	// user -> User{Name: "jinzhu", Age: 20, Email: "fake@fake.org"}
    //
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. pkg/proxy/config/api_test.go

    		Spec:       v1.ServiceSpec{Ports: []v1.ServicePort{{Protocol: "TCP", Port: 30}}}}
    
    	// Setup fake api client.
    	client := fake.NewSimpleClientset()
    	fakeWatch := watch.NewFake()
    	client.PrependWatchReactor("services", ktesting.DefaultWatchReactor(fakeWatch, nil))
    
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	handler := NewServiceHandlerMock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. docs_src/dependencies/tutorial006.py

    app = FastAPI()
    
    
    async def verify_token(x_token: str = Header()):
        if x_token != "fake-super-secret-token":
            raise HTTPException(status_code=400, detail="X-Token header invalid")
    
    
    async def verify_key(x_key: str = Header()):
        if x_key != "fake-super-secret-key":
            raise HTTPException(status_code=400, detail="X-Key header invalid")
        return x_key
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 583 bytes
    - Viewed (0)
Back to top