Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getFacet (0.13 sec)

  1. pilot/pkg/credentials/kube/secrets.go

    	if k8sSecret == nil {
    		return nil, fmt.Errorf("secret %v/%v not found", namespace, name)
    	}
    
    	return ExtractCertInfo(k8sSecret)
    }
    
    func (s *CredentialsController) GetCaCert(name, namespace string) (certInfo *credentials.CertInfo, err error) {
    	k8sSecret := s.secrets.Get(name, namespace)
    	if k8sSecret == nil {
    		strippedName := strings.TrimSuffix(name, securitymodel.SdsCaSuffix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pilot/pkg/xds/sds.go

    	default:
    		secretController = proxyClusterSecrets
    	}
    
    	isCAOnlySecret := strings.HasSuffix(sr.Name, securitymodel.SdsCaSuffix)
    	if isCAOnlySecret {
    		caCertInfo, err := secretController.GetCaCert(sr.Name, sr.Namespace)
    		if err != nil {
    			pilotSDSCertificateErrors.Increment()
    			log.Warnf("failed to fetch ca certificate for %s: %v", sr.ResourceName, err)
    			return nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. pkg/test/echo/proto/echo.pb.go

    	if x != nil {
    		return x.Cert
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetKey() string {
    	if x != nil {
    		return x.Key
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetCaCert() string {
    	if x != nil {
    		return x.CaCert
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetCertFile() string {
    	if x != nil {
    		return x.CertFile
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                SecurityDescriptor desc = querySecurity(th, SecurityInfo.DACL_SECURITY_INFO);
                ACE[] aces = desc.getAces();
                if ( aces != null ) {
                    processAces(aces, resolveSids);
                }
    
                return aces;
            }
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top