Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for originalPods (0.18 sec)

  1. pkg/controller/testutil/test_utils.go

    	originalObjJS, err := json.Marshal(nodeCopy)
    	if err != nil {
    		klog.FromContext(ctx).Error(nil, "Failed to marshal", "node", klog.KObj(&nodeCopy))
    		return nil, nil
    	}
    	var originalNode v1.Node
    	if err = json.Unmarshal(originalObjJS, &originalNode); err != nil {
    		klog.FromContext(ctx).Error(err, "Failed to unmarshal original object")
    		return nil, nil
    	}
    
    	var patchedObjJS []byte
    	switch pt {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    				Kind:       nodeKind.Kind,
    				Name:       "node1",
    			},
    		},
    	}
    }
    
    func applyNodeStatusPatch(originalNode *v1.Node, patch []byte) (*v1.Node, error) {
    	original, err := json.Marshal(originalNode)
    	if err != nil {
    		return nil, fmt.Errorf("failed to marshal original node %#v: %v", originalNode, err)
    	}
    	updated, err := strategicpatch.StrategicMergePatch(original, patch, v1.Node{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  3. pkg/controller/podgc/gc_controller_test.go

    				patchedPodBytes := patchAction.GetPatch()
    				originalPod, err := json.Marshal(test.pod)
    				if err != nil {
    					t.Fatalf("Failed to marshal original pod %#v: %v", originalPod, err)
    				}
    				updated, err := strategicpatch.StrategicMergePatch(originalPod, patchedPodBytes, v1.Pod{})
    				if err != nil {
    					t.Fatalf("Failed to apply strategic merge patch %q on pod %#v: %v", patchedPodBytes, originalPod, err)
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    			expectStatusCode:          200,
    			expectBody:                originalBody,
    		},
    		{
    			name:                      "reject redirection disabled in proxy, backend server sending 301 response",
    			rejectForwardingRedirects: false,
    			serverStatusCode:          301,
    			redirect:                  "/",
    			expectStatusCode:          301,
    			expectBody:                originalBody,
    		},
    	}
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  5. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    	if kubeClient == nil {
    		return fmt.Errorf("error getting kube client")
    	}
    
    	nodeClient := kubeClient.CoreV1().Nodes()
    	originalNode, err := nodeClient.Get(context.TODO(), string(nim.nodeName), metav1.GetOptions{})
    	if err != nil {
    		return err
    	}
    	node := originalNode.DeepCopy()
    
    	needUpdate := false
    	for _, update := range updateFuncs {
    		newNode, updated, err := update(node)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. pkg/securitycontext/accessors_test.go

    			m.SetRunAsGroup(m.RunAsGroup())
    			m.SetSELinuxOptions(m.SELinuxOptions())
    			m.SetSeccompProfile(m.SeccompProfile())
    			if !reflect.DeepEqual(podSC, originalPodSC) {
    				t.Errorf("%s: unexpected mutation: %#v, %#v", k, podSC, originalPodSC)
    			}
    			if !reflect.DeepEqual(sc, originalSC) {
    				t.Errorf("%s: unexpected mutation: %#v, %#v", k, sc, originalSC)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    			continue
    		}
    		pipe := action.Pipe
    		originalIDs := make([]string, len(test.ids))
    		copy(originalIDs, test.ids)
    		ensurePipelineContains(pipe, test.ids)
    		got := pipe.String()
    		if got != test.output {
    			t.Errorf("#%d: %s, %v: want\n\t%s\ngot\n\t%s", i, test.input, originalIDs, test.output, got)
    		}
    	}
    }
    
    func TestEscapeMalformedPipelines(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    		tagList = append(tagList, "registry.k8s.io:v"+strconv.Itoa(count))
    	}
    	return tagList
    }
    
    func applyNodeStatusPatch(originalNode *v1.Node, patch []byte) (*v1.Node, error) {
    	original, err := json.Marshal(originalNode)
    	if err != nil {
    		return nil, fmt.Errorf("failed to marshal original node %#v: %v", originalNode, err)
    	}
    	updated, err := strategicpatch.StrategicMergePatch(original, patch, v1.Node{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top