Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 171 for Ca (0.02 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/TrustRootIndex.kt

     * limitations under the License.
     */
    package okhttp3.internal.tls
    
    import java.security.cert.X509Certificate
    
    fun interface TrustRootIndex {
      /** Returns the trusted CA certificate that signed [cert]. */
      fun findByIssuerAndSignature(cert: X509Certificate): X509Certificate?
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 843 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/CrawlingInfoCA.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.cbean.ca;
    
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsCrawlingInfoCA;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class CrawlingInfoCA extends BsCrawlingInfoCA {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 850 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/FileAuthenticationCA.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.cbean.ca;
    
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsFileAuthenticationCA;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class FileAuthenticationCA extends BsFileAuthenticationCA {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 868 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/KeyMatchCA.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.cbean.ca;
    
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsKeyMatchCA;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class KeyMatchCA extends BsKeyMatchCA {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 838 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/PathMappingCA.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.cbean.ca;
    
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsPathMappingCA;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class PathMappingCA extends BsPathMappingCA {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 847 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/ThumbnailQueueCA.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.cbean.ca;
    
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsThumbnailQueueCA;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class ThumbnailQueueCA extends BsThumbnailQueueCA {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 856 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsElevateWordToLabelCB.java

    import org.codelibs.fess.opensearch.config.bsentity.dbmeta.ElevateWordToLabelDbm;
    import org.codelibs.fess.opensearch.config.cbean.ElevateWordToLabelCB;
    import org.codelibs.fess.opensearch.config.cbean.ca.ElevateWordToLabelCA;
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsElevateWordToLabelCA;
    import org.codelibs.fess.opensearch.config.cbean.cq.ElevateWordToLabelCQ;
    import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsElevateWordToLabelCQ;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

      val value: Any?,
    )
    
    @IgnoreJRERequirement // As of AGP 3.4.1, D8 desugars API 24 hashCode methods.
    internal data class BasicConstraints(
      /** True if this certificate can be used as a Certificate Authority (CA). */
      val ca: Boolean,
      /** The maximum number of intermediate CAs between this and leaf certificates. */
      val maxIntermediateCas: Long?,
    )
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt

          val trustedCert = trustRootIndex.findByIssuerAndSignature(toVerify)
          if (trustedCert != null) {
            if (result.size > 1 || toVerify != trustedCert) {
              result.add(trustedCert)
            }
            if (verifySignature(trustedCert, trustedCert, result.size - 2)) {
              return result // The self-signed cert is a root CA. We're done.
            }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsAccessTokenCB.java

    import org.codelibs.fess.opensearch.config.bsentity.dbmeta.AccessTokenDbm;
    import org.codelibs.fess.opensearch.config.cbean.AccessTokenCB;
    import org.codelibs.fess.opensearch.config.cbean.ca.AccessTokenCA;
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsAccessTokenCA;
    import org.codelibs.fess.opensearch.config.cbean.cq.AccessTokenCQ;
    import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsAccessTokenCQ;
    import org.dbflute.cbean.ConditionQuery;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top