Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 259 for claim (0.11 sec)

  1. src/cmd/internal/obj/sym.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package obj
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	pvName := pvc.Spec.VolumeName
    
    	if pvName == "" {
    		logger.V(5).Info("Persistent volume had no name for claim", "PVC", klog.KObj(pvc))
    		return pl.getCSIDriverInfoFromSC(logger, csiNode, pvc)
    	}
    
    	pv, err := pl.pvLister.Get(pvName)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

        Several times it has happened that there are PRs with 3, 5 or more approvals, probably because the description is appealing, but when I check the PRs, they are actually broken, have a bug, or don't solve the problem they claim to solve. 😅
    
        So, it's really important that you actually read and run the code, and let me know in the comments that you did. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/config.go

    		// Therefore, this should never happen
    		panic(err)
    	}
    	return copied
    }
    
    // ParseConfigs unmarshals the given YAML bytes into []Config, using a namespace.Static rather
    // than attempting to Claim the configured namespace.
    func ParseConfigs(bytes []byte) ([]Config, error) {
    	// parse into flexible type, so we can remove Namespace and parse that ourselves
    	raw := make([]map[string]any, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	//
    	// The current implementation also watched the generated secret and trigger a callback when it is
    	// near expiry. It will constructs the SAN based on the token's 'sub' claim, expected to be in
    	// the K8S format. No other JWTs are currently supported due to client logic. If JWT is
    	// missing/invalid, the resourceName is used.
    	GenerateSecret(resourceName string) (*SecretItem, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    		},
    		{
    			name:       "null claim value in outputClaimToHeader ",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in: &security_beta.RequestAuthentication{
    				JwtRules: []*security_beta.JWTRule{
    					{
    						Issuer:  "foo.com",
    						JwksUri: "https://foo.com",
    						OutputClaimToHeaders: []*security_beta.ClaimToHeader{
    							{
    								Header: "x-jwt-claim",
    								Claim:  "",
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

              "driverRequests": {
                "description": "DriverRequests describes all resources that are needed for the allocated claim. A single claim may use resources coming from different drivers. For each driver, this array has at most one entry which then may have one or more per-driver requests.\n\nMay be empty, in which case the claim can always be allocated.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set.go

    	pods, err := ssc.podLister.Pods(set.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    
    	filter := func(pod *v1.Pod) bool {
    		// Only claim if it matches our StatefulSet name. Otherwise release/ignore.
    		return isMemberOf(set, pod)
    	}
    
    	cm := controller.NewPodControllerRefManager(ssc.podControl, set, selector, controllerKind, ssc.canAdoptFunc(ctx, set))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. pkg/volume/local/local.go

    	if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.Local != nil {
    		// local volumes used as a PersistentVolume gets the ReadOnly flag indirectly through
    		// the persistent-claim volume used to mount the PV
    		return spec.ReadOnly, nil
    	}
    
    	return false, fmt.Errorf("spec does not reference a Local volume type")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation.go

    				allErrs = append(allErrs, field.Forbidden(fldPath.Child("reservedFor"), "may not be reserved more than once"))
    			}
    			// Items may be removed from ReservedFor while the claim is meant to be deallocated,
    			// but not added.
    			if resourceClaim.DeletionTimestamp != nil || resourceClaim.Status.DeallocationRequested {
    				oldSet := sets.New(oldClaim.Status.ReservedFor...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top