Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 926 for lake (0.1 sec)

  1. tests/test_tutorial/test_dependencies/test_tutorial012.py

        response = client.get(
            "/items/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "X-Key header invalid"}
    
    
    def test_get_invalid_second_header_users():
        response = client.get(
            "/users/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator_test.go

    					VolumeSource: v1.VolumeSource{
    						CSI: &v1.CSIVolumeSource{
    							Driver: "dswp-test-fake-csi-driver",
    						},
    					},
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			Phase: v1.PodPhase("Running"),
    		},
    	}
    
    	fakePodInformer.Informer().GetStore().Add(pod)
    
    	generatedVolumeName := "fake-plugin/dswp-test-fake-csi-driver"
    	pvcLister := fakeInformerFactory.Core().V1().PersistentVolumeClaims().Lister()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/net/smtp/smtp_test.go

    func TestClientAuthTrimSpace(t *testing.T) {
    	server := "220 hello world\r\n" +
    		"200 some more"
    	var wrote strings.Builder
    	var fake faker
    	fake.ReadWriter = struct {
    		io.Reader
    		io.Writer
    	}{
    		strings.NewReader(server),
    		&wrote,
    	}
    	c, err := NewClient(fake, "fake.host")
    	if err != nil {
    		t.Fatalf("NewClient: %v", err)
    	}
    	c.tls = true
    	c.didHello = true
    	c.Auth(toServerEmptyAuth{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    					VolumeSource: v1.VolumeSource{
    						GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    							PDName: "fake-device1",
    						},
    					},
    				},
    			},
    		},
    	}
    	volumeSpec := &volume.Spec{Volume: &pod.Spec.Volumes[0]}
    	devicePath := "fake/device/path"
    	deviceMountPath := "fake/device/mount/path"
    	generatedVolumeName, err := util.GetUniqueVolumeNameFromSpec(plugin, volumeSpec)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection_test.go

    	t.Log("drop")
    	// After leader is lost, we can take over
    	_, stop3 := createPerRevisionElection(t, "pod2", "foo", watcher, true, client)
    	// Other revisions are independent
    	_, stop4 := createPerRevisionElection(t, "pod4", "not-foo", watcher, true, client)
    	close(stop3)
    	close(stop4)
    }
    
    func TestPrioritizedLeaderElection(t *testing.T) {
    	client := fake.NewSimpleClientset()
    	watcher := &fakeDefaultWatcher{defaultRevision: "red"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_dependencies/test_tutorial012_an_py39.py

            "/items/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "X-Key header invalid"}
    
    
    @needs_py39
    def test_get_invalid_second_header_users(client: TestClient):
        response = client.get(
            "/users/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. 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)
  8. src/net/dnsclient_unix_test.go

    	// around after this test is done if we don't call dnsWaitGroup.Wait.
    	ctx, cancel := context.WithTimeout(context.Background(), 2*time.Microsecond)
    	defer cancel()
    	_, err := r.LookupIPAddr(ctx, "where.are.they.now")
    	if err == nil {
    		t.Fatal("fake DNS lookup unexpectedly succeeded")
    	}
    }
    
    func lookupWithFake(fake fakeDNSServer, name string, typ dnsmessage.Type) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top