Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 157 for deleteRS (0.14 sec)

  1. src/net/http/client_test.go

    		15: {method: "DELETE", serverStatus: 301, wantMethod: "GET"},
    		16: {method: "DELETE", serverStatus: 302, wantMethod: "GET"},
    		17: {method: "DELETE", serverStatus: 303, wantMethod: "GET"},
    		18: {method: "DELETE", serverStatus: 307, wantMethod: "DELETE"},
    		19: {method: "DELETE", serverStatus: 308, wantMethod: "DELETE"},
    
    		20: {method: "PUT", serverStatus: 301, wantMethod: "GET"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. cmd/object-api-datatypes_gen.go

    			}
    		case "Created":
    			z.Created, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Created")
    				return
    			}
    		case "Deleted":
    			z.Deleted, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Deleted")
    				return
    			}
    		case "Versioning":
    			z.Versioning, bts, err = msgp.ReadBoolBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Versioning")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		[]string{fmt.Sprintf("ns1/%s", model.GetAmbientPolicyConfigName(model.ConfigKey{
    			Kind:      kind.PeerAuthentication,
    			Name:      selectorPolicyName,
    			Namespace: "ns1",
    		}))})
    
    	// Delete global selector policy
    	s.pa.Delete("global-selector", systemNS)
    
    	// Update workload policy to be PERMISSIVE
    	s.addPolicy(t, selectorPolicyName, testNS, map[string]string{"app": "a"}, gvk.PeerAuthentication, func(c controllers.Object) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    		}
    		for _, policy := range []apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    			{WhenDeleted: "Retain", WhenScaled: "Delete"},
    			{WhenDeleted: "Delete", WhenScaled: "Retain"},
    			{WhenDeleted: "Delete", WhenScaled: "Delete"},
    		} {
    			set.Spec.PersistentVolumeClaimRetentionPolicy = &policy
    			got := hasUnexpectedController(target, set, pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    	}
    
    	if !podWorkers.ShouldPodContentBeRemoved(types.UID("0")) {
    		t.Errorf("Expected pod to be suitable for removal (deleted and terminated)")
    	}
    	if podWorkers.ShouldPodContentBeRemoved(types.UID("1")) {
    		t.Errorf("Expected pod to not be suitable for removal (terminated but not deleted)")
    	}
    	if podWorkers.ShouldPodContentBeRemoved(types.UID("2")) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    		proxyHandler.ServeHTTP(w, r)
    		if c := r.Header.Get(someConnHeader); c != "should be deleted" {
    			t.Errorf("handler modified header %q = %q; want %q", someConnHeader, c, "should be deleted")
    		}
    		if c := r.Header.Get(fakeConnectionToken); c != "should be deleted" {
    			t.Errorf("handler modified header %q = %q; want %q", fakeConnectionToken, c, "should be deleted")
    		}
    		c := r.Header["Connection"]
    		var cf []string
    		for _, f := range c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		{Type: watch.Deleted, Object: pod4.DeepCopy()},
    	}
    	fooEvents := []watch.Event{
    		{Type: watch.Added, Object: pod1.DeepCopy()},
    		{Type: watch.Modified, Object: pod2.DeepCopy()},
    		{Type: watch.Deleted, Object: pod2DeletedAt3.DeepCopy()},
    	}
    	barEvents := []watch.Event{
    		{Type: watch.Added, Object: pod1.DeepCopy()},
    		{Type: watch.Deleted, Object: pod1DeletedAt2.DeepCopy()},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
      void DeleteSelf_() { delete this; }
    
      // Uses a GTestFlagSaver to save and restore all Google Test flags.
      const internal::GTestFlagSaver* const gtest_flag_saver_;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
      void DeleteSelf_() { delete this; }
    
      // Uses a GTestFlagSaver to save and restore all Google Test flags.
      const internal::GTestFlagSaver* const gtest_flag_saver_;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		oldObj, newObj interface{}
    		expectedHint   framework.QueueingHint
    		expectedErr    bool
    	}{
    		"skip-deleted": {
    			pod:          podWithClaimTemplate,
    			oldObj:       scheduling,
    			expectedHint: framework.QueueSkip,
    		},
    		"skip-missed-deleted": {
    			pod: podWithClaimTemplate,
    			oldObj: cache.DeletedFinalStateUnknown{
    				Obj: scheduling,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top