Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for pvs1 (0.06 sec)

  1. src/internal/fuzz/mutators_byteslice.go

    // byteSliceRemoveBytes removes a random chunk of bytes from b.
    func byteSliceRemoveBytes(m *mutator, b []byte) []byte {
    	if len(b) <= 1 {
    		return nil
    	}
    	pos0 := m.rand(len(b))
    	pos1 := pos0 + m.chooseLen(len(b)-pos0)
    	copy(b[pos0:], b[pos1:])
    	b = b[:len(b)-(pos1-pos0)]
    	return b
    }
    
    // byteSliceInsertRandomBytes inserts a chunk of random bytes into b at a random
    // position.
    func byteSliceInsertRandomBytes(m *mutator, b []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.s

    	LXVD2X (blk_key)(R17), VS14; \
    	CMP key_len, $14; \
    	BEQ keysLoaded; \
    	MOVD R0,0(R0); \
    keysLoaded:
    
    // Encrypt 1 (vin) with first 9
    // keys from VS1 - VS9.
    #define VCIPHER_1X9_KEYS(vin) \
    	XXLOR VS1, VS1, V23; \
    	XXLOR VS2, VS2, V24; \
    	XXLOR VS3, VS3, V25; \
    	XXLOR VS4, VS4, V26; \
    	XXLOR VS5, VS5, V27; \
    	VCIPHER vin, V23, vin; \
    	VCIPHER vin, V24, vin; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. pkg/volume/util/finalizer.go

    package util
    
    const (
    	// PVCProtectionFinalizer is the name of finalizer on PVCs that have a running pod.
    	PVCProtectionFinalizer = "kubernetes.io/pvc-protection"
    
    	// PVProtectionFinalizer is the name of finalizer on PVs that are bound by PVCs
    	PVProtectionFinalizer = "kubernetes.io/pv-protection"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 10 21:24:35 UTC 2018
    - 874 bytes
    - Viewed (0)
  4. test/fixedbugs/bug284.go

    	p2 = P2(p1) // ERROR "cannot|invalid"
    	p2 = p2
    
    	type Q1 *struct {
    		x int
    	}
    	type Q2 *S1
    	var q0 *struct {
    		x int
    	}
    	var q1 Q1
    	var q2 Q2
    	var ps1 *S1
    	q0 = q0
    	q0 = q1
    	q0 = (*struct {
    		x int
    	})(ps1) // legal because of special conversion exception for pointers
    	q0 = (*struct {
    		x int
    	})(q2) // ERROR "cannot|invalid"
    	q1 = q0
    	q1 = q1
    	q1 = Q1(q2)    // ERROR "cannot|invalid"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 3.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

        def "use highest visual studio version found in the registry"() {
            def dir1 = vsDir("vs1")
            def dir2 = vsDir("vs2")
    
            given:
            1 * commandLineLocator.getVisualStudioInstalls() >> []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/graph_populator.go

    	"k8s.io/client-go/tools/cache"
    )
    
    type graphPopulator struct {
    	graph *Graph
    }
    
    func AddGraphEventHandlers(
    	graph *Graph,
    	nodes corev1informers.NodeInformer,
    	pods corev1informers.PodInformer,
    	pvs corev1informers.PersistentVolumeInformer,
    	attachments storageinformers.VolumeAttachmentInformer,
    	slices resourcev1alpha2informers.ResourceSliceInformer,
    ) {
    	g := &graphPopulator{
    		graph: graph,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. pkg/controller/volume/pvprotection/pv_protection_controller.go

    	"k8s.io/kubernetes/pkg/controller/volume/protectionutil"
    	"k8s.io/kubernetes/pkg/util/slice"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    // Controller is controller that removes PVProtectionFinalizer
    // from PVs that are not bound to PVCs.
    type Controller struct {
    	client clientset.Interface
    
    	pvLister       corelisters.PersistentVolumeLister
    	pvListerSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. test/noinit.go

    type T struct{ X, Y int }
    
    var tx T
    var t0 = T{}
    var t0a = T{0, 0}
    var t0b = T{X: 0}
    var t1 = T{X: 1, Y: 2}
    var t1a = T{3, 4}
    
    var psx *[]int
    var ps0 = &[]int{0, 0, 0}
    var ps1 = &[]int{1, 2, 3}
    
    var pax *[10]int
    var pa0 = &[10]int{0, 0, 0}
    var pa1 = &[10]int{1, 2, 3}
    
    var ptx *T
    var pt0 = &T{}
    var pt0a = &T{0, 0}
    var pt0b = &T{X: 0}
    var pt1 = &T{X: 1, Y: 2}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	for _, tc := range []vaTest{
    		{ // pod is scheduled
    			testName:          "Scheduled pod",
    			volName:           "vol1",
    			podName:           "pod1",
    			podNodeName:       "mynode-1",
    			pvName:            "pv1",
    			vaName:            "va1",
    			vaNodeName:        "mynode-1",
    			vaAttachStatus:    false,
    			expected_attaches: map[string][]string{"mynode-1": {"vol1"}},
    			expected_detaches: map[string][]string{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		// We bind PVCs with PVs, so any changes may make the pods schedulable.
    		{Event: framework.ClusterEvent{Resource: framework.PersistentVolumeClaim, ActionType: framework.Add | framework.Update}},
    		{Event: framework.ClusterEvent{Resource: framework.PersistentVolume, ActionType: framework.Add | framework.Update}},
    		// Pods may fail to find available PVs because the node labels do not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top