Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for csPods (0.25 sec)

  1. cni/pkg/repair/repair_test.go

    			assert.Equal(t, c.matchesFilter(tt.pod), tt.want)
    		})
    	}
    }
    
    func fakeClient(pods ...*corev1.Pod) kube.Client {
    	var csPods []runtime.Object
    
    	for _, pod := range pods {
    		csPods = append(csPods, pod.DeepCopy())
    	}
    	return kube.NewFakeClient(csPods...)
    }
    
    func makePodLabelMap(pods []*corev1.Pod) (podmap map[string]string) {
    	podmap = map[string]string{}
    	for _, pod := range pods {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. security/pkg/pki/ra/common.go

    	csr, err := util.ParsePemEncodedCSR(csrPEM)
    	if err != nil {
    		return false
    	}
    	if err := csr.CheckSignature(); err != nil {
    		return false
    	}
    	csrIDs, err := util.ExtractIDs(csr.Extensions)
    	if err != nil {
    		return false
    	}
    	for _, s1 := range csrIDs {
    		if !slices.Contains(subjectIDs, s1) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. pkg/volume/volume_linux.go

    	// Symlinks have a mode of 777 but this really doesn't mean anything.
    	// The permissions of the underlying file are what matter.
    	// However, if one reads the mode of a symlink then chmods the symlink
    	// with that mode, it changes the mode of the underlying file, overridden
    	// the defaultMode and permissions initialized by the volume plugin, which
    	// is not what we want; thus, we skip chmod for symlinks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/statusgen.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    const (
    	TypeDebugPrefix = v3.DebugType + "/"
    
    	// TypeDebugSyncronization requests Envoy CSDS for proxy sync status
    	TypeDebugSyncronization = v3.DebugType + "/syncz"
    
    	// TypeDebugConfigDump requests Envoy configuration for a proxy without creating one
    	TypeDebugConfigDump = v3.DebugType + "/config_dump"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top