Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetClaim (0.12 sec)

  1. pkg/controller/statefulset/stateful_pod_control.go

    	CreatePod(ctx context.Context, pod *v1.Pod) error
    	GetPod(namespace, podName string) (*v1.Pod, error)
    	UpdatePod(pod *v1.Pod) error
    	DeletePod(pod *v1.Pod) error
    	CreateClaim(claim *v1.PersistentVolumeClaim) error
    	GetClaim(namespace, claimName string) (*v1.PersistentVolumeClaim, error)
    	UpdateClaim(claim *v1.PersistentVolumeClaim) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/testing/testing.go

    		nameSpace := action.(core.GetAction).GetNamespace()
    		claim, found := r.claims[name]
    		if found {
    			logger.V(4).Info("GetClaim: found claim", "PVC", klog.KObj(claim))
    			return true, claim.DeepCopy(), nil
    		}
    		logger.V(4).Info("GetClaim: claim not found", "PVC", klog.KRef(nameSpace, name))
    		return true, nil, apierrors.NewNotFound(action.GetResource().GroupResource(), name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                if (claimsSet == null) {
                    throw new SsoLoginException("could not validate nonce");
                }
    
                final String nonce = (String) claimsSet.getClaim("nonce");
                if (logger.isDebugEnabled()) {
                    logger.debug("nonce: {}", nonce);
                }
                if (StringUtils.isEmpty(nonce) || !nonce.equals(stateData.getNonce())) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    }
    
    func (om *fakeObjectManager) CreateClaim(claim *v1.PersistentVolumeClaim) error {
    	om.claimsIndexer.Update(claim)
    	return nil
    }
    
    func (om *fakeObjectManager) GetClaim(namespace, claimName string) (*v1.PersistentVolumeClaim, error) {
    	return om.claimsLister.PersistentVolumeClaims(namespace).Get(claimName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top