Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for pdName (0.14 sec)

  1. cni/pkg/plugin/sidecar_intercept_rule_mgr.go

    // limitations under the License.
    
    package plugin
    
    // InterceptRuleMgr configures networking tables (e.g. iptables or nftables) for
    // redirecting traffic to an Istio proxy.
    type InterceptRuleMgr interface {
    	Program(podName, netns string, redirect *Redirect) error
    }
    
    // Constructor for iptables InterceptRuleMgr
    func IptablesInterceptRuleMgr() InterceptRuleMgr {
    	return newIPTables()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 940 bytes
    - Viewed (0)
  2. pkg/volume/util/recyclerclient/recycler_client.go

    //	       will be overwritten with unique name based on PV.Name.
    //		client - kube client for API operations.
    func RecycleVolumeByWatchingPodUntilCompletion(pvName string, pod *v1.Pod, kubeClient clientset.Interface, recorder RecycleEventRecorder) error {
    	return internalRecycleVolumeByWatchingPodUntilCompletion(pvName, pod, newRecyclerClient(kubeClient, recorder))
    }
    
    // same as above func comments, except 'recyclerClient' is a narrower pod API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    		}
    		klog.V(7).Infof("Handle(%#+v) => fsName=%q, distMethod=%#+v, plName=%q, isExempt=%v, reject", requestDigest, fs.Name, fs.Spec.DistinguisherMethod, pl.Name, isExempt)
    		return
    	}
    	klog.V(7).Infof("Handle(%#+v) => fsName=%q, distMethod=%#+v, plName=%q, isExempt=%v, queued=%v", requestDigest, fs.Name, fs.Spec.DistinguisherMethod, pl.Name, isExempt, queued)
    	var executed bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/net/cgo_unix_cgo_res.go

    	return nil
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	return
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_uchar, anslen int) int {
    	x := C.res_search(dname, C.int(class), C.int(typ), ans, C.int(anslen))
    	return int(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 892 bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/revision_tag_test.go

    					verifyRevision(t, istioCtl, pods[0].Name, revTagNs.Name(), tc.revision)
    				})
    			}
    		})
    }
    
    func verifyRevision(t framework.TestContext, i istioctl.Instance, podName, podNamespace, revision string) {
    	t.Helper()
    	pcArgs := []string{"pc", "bootstrap", podName, "-n", podNamespace}
    	bootstrapConfig, _ := i.InvokeOrFail(t, pcArgs)
    	expected := fmt.Sprintf("\"discoveryAddress\": \"istiod-%s.istio-system.svc:15012\"", revision)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/genman/gen_kube_man.go

    		fmt.Fprintf(out, "\n")
    	}
    }
    
    func genMarkdown(command *cobra.Command, parent, docsDir string) {
    	dparent := strings.Replace(parent, " ", "-", -1)
    	name := command.Name()
    	dname := name
    	if len(parent) > 0 {
    		dname = dparent + "-" + name
    		name = parent + " " + name
    	}
    
    	out := new(bytes.Buffer)
    	short := command.Short
    	long := command.Long
    	if len(long) == 0 {
    		long = short
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    				plName := fmt.Sprintf("test-pl%d", flow)
    				fsObjs[flow] = &flowcontrol.FlowSchema{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: fmt.Sprintf("test-fs%d", flow),
    					},
    					Spec: flowcontrol.FlowSchemaSpec{
    						MatchingPrecedence: 100,
    						PriorityLevelConfiguration: flowcontrol.PriorityLevelConfigurationReference{
    							Name: plName,
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/net/cgo_unix_syscall.go

    }
    
    func _C_res_ninit(state *_C_struct___res_state) error {
    	unix.ResNinit(state)
    	return nil
    }
    
    func _C_res_nsearch(state *_C_struct___res_state, dname *_C_char, class, typ int, ans *_C_char, anslen int) int {
    	x, _ := unix.ResNsearch(state, dname, class, typ, ans, anslen)
    	return x
    }
    
    func _C_res_nclose(state *_C_struct___res_state) {
    	unix.ResNclose(state)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tests/integration/ambient/cacert_rotation_test.go

    	for _, ztunnel := range zPods {
    		podName := fmt.Sprintf("%s.%s", ztunnel.Name, ztunnel.Namespace)
    		out, errOut, err := ctl.Invoke([]string{"pc", "s", podName, "-o", "json"})
    		if err != nil || errOut != "" {
    			t.Errorf("failed to retrieve pod secrets from %s, err: %v errOut: %s", podName, err, errOut)
    		}
    
    		dump := []configdump.CertsDump{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kubelet/config/common_test.go

    			"static-pod1",
    			"static-pod1-node1",
    			"static-pod1-NODE1",
    			true,
    		},
    	}
    	for _, c := range testCases {
    		assert.Equal(t, c.expected, generatePodName(c.podName, c.nodeName), "wrong pod name generated")
    		pod := &core.Pod{}
    		pod.Name = c.podName
    		if c.overwrite != "" {
    			pod.Name = c.overwrite
    		}
    		errs := validation.ValidatePodCreate(pod, validation.PodValidationOptions{})
    		if c.shouldErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top