Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 182 for pvcs (0.21 sec)

  1. pkg/volume/util/operationexecutor/operation_executor.go

    	// the node's volumesToReportAsAttached list)
    	AddVolumeToReportAsAttached(logger klog.Logger, volumeName v1.UniqueVolumeName, nodeName types.NodeName)
    
    	// InitializeClaimSize sets pvc claim size by reading pvc.Status.Capacity
    	InitializeClaimSize(logger klog.Logger, volumeName v1.UniqueVolumeName, claimSize *resource.Quantity)
    
    	GetClaimSize(volumeName v1.UniqueVolumeName) *resource.Quantity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	//		NodeResizeFailed.
    	// For example: if expanding a PVC for more capacity - this field can be one of the following states:
    	// 	- pvc.status.allocatedResourceStatus['storage'] = "ControllerResizeInProgress"
    	//      - pvc.status.allocatedResourceStatus['storage'] = "ControllerResizeFailed"
    	//      - pvc.status.allocatedResourceStatus['storage'] = "NodeResizePending"
    	//      - pvc.status.allocatedResourceStatus['storage'] = "NodeResizeInProgress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/workload_test.go

    				Name:     "tcp",
    				Port:     80,
    				Protocol: "TCP",
    			}},
    			Selector: selector,
    			Type:     corev1.ServiceTypeClusterIP,
    		},
    	}
    
    	svcs := clienttest.NewWriter[*corev1.Service](s.T(), s.KubeClient())
    	svcs.CreateOrUpdate(service)
    }
    
    func TestWorkloadAuthorizationPolicy(t *testing.T) {
    	test.SetForTest(t, &features.EnableAmbient, true)
    	expect := buildExpect(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/defaults_test.go

    		},
    	}
    
    	for _, test := range tests {
    		pvc := &v1.PersistentVolumeClaim{
    			Spec: v1.PersistentVolumeClaimSpec{
    				VolumeMode: test.volumeMode,
    			},
    		}
    		obj1 := roundTrip(t, runtime.Object(pvc))
    		pvc1 := obj1.(*v1.PersistentVolumeClaim)
    		if pvc1.Status.Phase != v1.ClaimPending {
    			t.Errorf("Expected claim phase %v, got %v", v1.ClaimPending, pvc1.Status.Phase)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    		var deleted []string
    		var svcs []*model.Service
    		switch key.Kind {
    		case kind.ServiceEntry:
    			svcs, deleted = configgen.deltaFromServices(key, proxy, updates.Push, serviceClusters,
    				servicePortClusters, subsetClusters)
    		case kind.DestinationRule:
    			svcs, deleted = configgen.deltaFromDestinationRules(key, proxy, subsetClusters)
    		}
    		services = append(services, svcs...)
    		deletedClusters.InsertAll(deleted...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    "volumeClaimTemplate": "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      repeated CertificateSigningRequest items = 2;
    }
    
    // CertificateSigningRequestSpec contains the certificate request.
    message CertificateSigningRequestSpec {
      // Base64-encoded PKCS#10 CSR data
      // +listType=atomic
      optional bytes request = 1;
    
      // Requested signer for the request. It is a qualified name in the form:
      // `scope-hostname.io/name`.
      // If empty, it will be defaulted:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/internal/trace/internal/oldtrace/parser.go

    type Trace struct {
    	Version version.Version
    
    	// Events is the sorted list of Events in the trace.
    	Events Events
    	// Stacks is the stack traces (stored as slices of PCs), keyed by stack IDs
    	// from the trace.
    	Stacks        map[uint32][]uint64
    	PCs           map[uint64]Frame
    	Strings       map[uint64]string
    	InlineStrings []string
    }
    
    // batchOffset records the byte offset of, and number of events in, a batch. A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. src/runtime/debuglog.go

    	case debugLogPC:
    		printDebugLogPC(uintptr(r.uvarint()), false)
    
    	case debugLogTraceback:
    		n := int(r.uvarint())
    		for i := 0; i < n; i++ {
    			print("\n\t")
    			// gentraceback PCs are always return PCs.
    			// Convert them to call PCs.
    			//
    			// TODO(austin): Expand inlined frames.
    			printDebugLogPC(uintptr(r.uvarint()), true)
    		}
    	}
    
    	return true
    }
    
    // printDebugLog prints the debug log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/crypto/crypto.go

    	// private key.
    	Public() PublicKey
    
    	// Sign signs digest with the private key, possibly using entropy from
    	// rand. For an RSA key, the resulting signature should be either a
    	// PKCS #1 v1.5 or PSS signature (as indicated by opts). For an (EC)DSA
    	// key, it should be a DER-serialised, ASN.1 signature structure.
    	//
    	// Hash implements the SignerOpts interface and, in most cases, one can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top